diff options
Diffstat (limited to 'Include/parsetok.h')
-rw-r--r-- | Include/parsetok.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/parsetok.h b/Include/parsetok.h index a568f46..7ef64cf 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -38,8 +38,8 @@ typedef struct { char *text; } perrdetail; -extern node *parsestring PROTO((char *, grammar *, int, perrdetail *)); -extern node *parsefile PROTO((FILE *, char *, grammar *, int, +extern node *PyParser_ParseString Py_PROTO((char *, grammar *, int, perrdetail *)); +extern node *PyParser_ParseFile Py_PROTO((FILE *, char *, grammar *, int, char *, char *, perrdetail *)); #ifdef __cplusplus |