Staging
v0.8.1
https://github.com/python/cpython
Revision 48e14d3fdac9902429dc5312252073389a538a17 authored by Martin v. Löwis on 09 May 2011, 05:37:45 UTC, committed by Martin v. Löwis on 09 May 2011, 05:37:45 UTC
Patch by Arfrever Frehtes Taifersar Arahesis.
1 parent 19f7ca2
Raw File
Tip revision: 48e14d3fdac9902429dc5312252073389a538a17 authored by Martin v. Löwis on 09 May 2011, 05:37:45 UTC
Use --as-needed when linking libpython3.so. Closes #11347.
Tip revision: 48e14d3
pgen.h
#ifndef Py_PGEN_H
#define Py_PGEN_H
#ifdef __cplusplus
extern "C" {
#endif


/* Parser generator interface */

extern grammar *meta_grammar(void);

struct _node;
extern grammar *pgen(struct _node *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PGEN_H */
back to top