mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
d26d7ae0e4
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.
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
#ifndef Py_PGENHEADERS_H
|
|
#define Py_PGENHEADERS_H
|
|
#include "third_party/python/Include/Python.h"
|
|
COSMOPOLITAN_C_START_
|
|
/* clang-format off */
|
|
|
|
PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
|
|
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
|
|
PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
|
|
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
|
|
|
|
#define addarc _Py_addarc
|
|
#define addbit _Py_addbit
|
|
#define adddfa _Py_adddfa
|
|
#define addfirstsets _Py_addfirstsets
|
|
#define addlabel _Py_addlabel
|
|
#define addstate _Py_addstate
|
|
#define delbitset _Py_delbitset
|
|
#define dumptree _Py_dumptree
|
|
#define findlabel _Py_findlabel
|
|
#define freegrammar _Py_freegrammar
|
|
#define mergebitset _Py_mergebitset
|
|
#define meta_grammar _Py_meta_grammar
|
|
#define newbitset _Py_newbitset
|
|
#define newgrammar _Py_newgrammar
|
|
#define pgen _Py_pgen
|
|
#define printgrammar _Py_printgrammar
|
|
#define printnonterminals _Py_printnonterminals
|
|
#define printtree _Py_printtree
|
|
#define samebitset _Py_samebitset
|
|
#define showtree _Py_showtree
|
|
#define tok_dump _Py_tok_dump
|
|
#define translatelabels _Py_translatelabels
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !Py_PGENHEADERS_H */
|