diff options
author | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
commit | 43466ec7b07de6bcad016bec60839cd6079c5a9c (patch) | |
tree | ec3bf3e1dfbf9535fa56e153e200f6491f34a6b0 /Include/parsetok.h | |
parent | b241b67b8954b0679377af00d668e3dc92f4c858 (diff) | |
download | cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.zip cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.gz cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.bz2 |
Add DL_IMPORT(returntype) for all officially exported functions.
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 |