mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-05 04:02:28 +00:00
Building o//third_party/python now takes 5 seconds on my PC This change works towards modifying Python to use runtime dispatching when appropriate. For example, when loading the magnums in the socket module, it's a good idea to check if the magnum is zero, because that means the local system platform doesn't support it.
17 lines
407 B
C
17 lines
407 B
C
#ifndef Py_PYGETOPT_H
|
|
#define Py_PYGETOPT_H
|
|
COSMOPOLITAN_C_START_
|
|
/* clang-format off */
|
|
|
|
#ifndef Py_LIMITED_API
|
|
PyAPI_DATA(int) _PyOS_opterr;
|
|
PyAPI_DATA(int) _PyOS_optind;
|
|
PyAPI_DATA(wchar_t *) _PyOS_optarg;
|
|
|
|
PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
|
|
|
|
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
|
|
#endif /* !Py_LIMITED_API */
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !Py_PYGETOPT_H */
|