Chris@87: #ifndef Py_PGENHEADERS_H Chris@87: #define Py_PGENHEADERS_H Chris@87: #ifdef __cplusplus Chris@87: extern "C" { Chris@87: #endif Chris@87: Chris@87: Chris@87: /* Include files and extern declarations used by most of the parser. */ Chris@87: Chris@87: #include "Python.h" Chris@87: Chris@87: PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...) Chris@87: Py_GCC_ATTRIBUTE((format(printf, 1, 2))); Chris@87: PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...) Chris@87: Py_GCC_ATTRIBUTE((format(printf, 1, 2))); Chris@87: Chris@87: #define addarc _Py_addarc Chris@87: #define addbit _Py_addbit Chris@87: #define adddfa _Py_adddfa Chris@87: #define addfirstsets _Py_addfirstsets Chris@87: #define addlabel _Py_addlabel Chris@87: #define addstate _Py_addstate Chris@87: #define delbitset _Py_delbitset Chris@87: #define dumptree _Py_dumptree Chris@87: #define findlabel _Py_findlabel Chris@87: #define mergebitset _Py_mergebitset Chris@87: #define meta_grammar _Py_meta_grammar Chris@87: #define newbitset _Py_newbitset Chris@87: #define newgrammar _Py_newgrammar Chris@87: #define pgen _Py_pgen Chris@87: #define printgrammar _Py_printgrammar Chris@87: #define printnonterminals _Py_printnonterminals Chris@87: #define printtree _Py_printtree Chris@87: #define samebitset _Py_samebitset Chris@87: #define showtree _Py_showtree Chris@87: #define tok_dump _Py_tok_dump Chris@87: #define translatelabels _Py_translatelabels Chris@87: Chris@87: #ifdef __cplusplus Chris@87: } Chris@87: #endif Chris@87: #endif /* !Py_PGENHEADERS_H */