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 22347ab..d079e9f 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -45,8 +45,8 @@ typedef struct { char *text; } perrdetail; -extern node *PyParser_ParseString Py_PROTO((char *, grammar *, int, perrdetail *)); -extern node *PyParser_ParseFile Py_PROTO((FILE *, char *, grammar *, int, +extern DL_IMPORT(node *) PyParser_ParseString Py_PROTO((char *, grammar *, int, perrdetail *)); +extern DL_IMPORT(node *) PyParser_ParseFile Py_PROTO((FILE *, char *, grammar *, int, char *, char *, perrdetail *)); #ifdef __cplusplus |