mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Add
PySys_WriteStdout(format, ...) PySys_WriteStderr(format, ...)
This commit is contained in:
parent
597ac20708
commit
bf6a9b165a
1 changed files with 9 additions and 0 deletions
|
@ -43,6 +43,15 @@ FILE *PySys_GetFile Py_PROTO((char *, FILE *));
|
|||
void PySys_SetArgv Py_PROTO((int, char **));
|
||||
void PySys_SetPath Py_PROTO((char *));
|
||||
|
||||
#ifdef HAVE_STDARG_PROTOTYPES
|
||||
void PySys_WriteStdout(const char *format, ...);
|
||||
void PySys_WriteStderr(const char *format, ...);
|
||||
#else
|
||||
/* Better to have no prototypes at all for varargs functions in this case */
|
||||
void PySys_WriteStdout();
|
||||
void PySys_WriteStderr();
|
||||
#endif
|
||||
|
||||
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
|
||||
extern DL_IMPORT(int) _PySys_CheckInterval;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue