summaryrefslogtreecommitdiff
path: root/Include/sysmodule.h
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-22 23:30:03 +0000
committerThomas Wouters <thomas@python.org>2000-07-22 23:30:03 +0000
commit61860fb1a4ce60025aa1c7aa99ad70660cfd3da6 (patch)
tree3d3d807377216011711f39bae9d18bebf6b11afc /Include/sysmodule.h
parent878857ec08b89b165fb7082611e039e84dc4c7e2 (diff)
downloadcpython-61860fb1a4ce60025aa1c7aa99ad70660cfd3da6.tar.gz
ANSIfications: fix empty arglists, and remove the checks for
'HAVE_STDARG_PROTOTYPES' (consider it true, remove false branch)
Diffstat (limited to 'Include/sysmodule.h')
-rw-r--r--Include/sysmodule.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index e208fc392a..a2920c031c 100644
--- a/Include/sysmodule.h
+++ b/Include/sysmodule.h
@@ -22,14 +22,8 @@ DL_IMPORT(FILE *) PySys_GetFile(char *, FILE *);
DL_IMPORT(void) PySys_SetArgv(int, char **);
DL_IMPORT(void) PySys_SetPath(char *);
-#ifdef HAVE_STDARG_PROTOTYPES
DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
-#else
-/* Better to have no prototypes at all for varargs functions in this case */
-DL_IMPORT(void) PySys_WriteStdout();
-DL_IMPORT(void) PySys_WriteStderr();
-#endif
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
extern DL_IMPORT(int) _PySys_CheckInterval;