Add DL_IMPORT(returntype) for all officially exported functions.

This commit is contained in:
Guido van Rossum 1998-12-04 18:48:25 +00:00
parent b241b67b89
commit 43466ec7b0
44 changed files with 401 additions and 398 deletions

View file

@ -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