summaryrefslogtreecommitdiff
path: root/Include/marshal.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:01:01 +0000
committerGuido van Rossum <guido@python.org>1995-01-17 16:01:01 +0000
commit938178283c29cdc2c8f5004d58dff110ac907883 (patch)
tree7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/marshal.h
parent8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff)
downloadcpython-git-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz
new names for lots of new functions
Diffstat (limited to 'Include/marshal.h')
-rw-r--r--Include/marshal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/marshal.h b/Include/marshal.h
index e5ee545753..55396d5c2d 100644
--- a/Include/marshal.h
+++ b/Include/marshal.h
@@ -31,11 +31,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Interface for marshal.c */
void PyMarshal_WriteLongToFile Py_PROTO((long, FILE *));
-void wr_short Py_PROTO((int, FILE *));
+void PyMarshal_WriteShortToFile Py_PROTO((int, FILE *));
void PyMarshal_WriteObjectToFile Py_PROTO((PyObject *, FILE *));
long PyMarshal_ReadLongFromFile Py_PROTO((FILE *));
-int rd_short Py_PROTO((FILE *));
+int PyMarshal_ReadShortFromFile Py_PROTO((FILE *));
PyObject *PyMarshal_ReadObjectFromFile Py_PROTO((FILE *));
PyObject *PyMarshal_ReadObjectFromString Py_PROTO((char *, int));