sysmodule.h 266 B

1234567891011121314
  1. #ifndef Py_SYSMODULE_H
  2. #define Py_SYSMODULE_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...);
  7. PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif /* !Py_SYSMODULE_H */