summaryrefslogtreecommitdiff
path: root/Include/token.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-04 18:48:25 +0000
committerGuido van Rossum <guido@python.org>1998-12-04 18:48:25 +0000
commit43466ec7b07de6bcad016bec60839cd6079c5a9c (patch)
treeec3bf3e1dfbf9535fa56e153e200f6491f34a6b0 /Include/token.h
parentb241b67b8954b0679377af00d668e3dc92f4c858 (diff)
downloadcpython-git-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.gz
Add DL_IMPORT(returntype) for all officially exported functions.
Diffstat (limited to 'Include/token.h')
-rw-r--r--Include/token.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/token.h b/Include/token.h
index fefe030e5d..3b4e2eebfa 100644
--- a/Include/token.h
+++ b/Include/token.h
@@ -88,9 +88,9 @@ PERFORMANCE OF THIS SOFTWARE.
#define ISEOF(x) ((x) == ENDMARKER)
-extern char *_PyParser_TokenNames[]; /* Token names */
-extern int PyToken_OneChar Py_PROTO((int));
-extern int PyToken_TwoChars Py_PROTO((int, int));
+extern DL_IMPORT(char *) _PyParser_TokenNames[]; /* Token names */
+extern DL_IMPORT(int) PyToken_OneChar Py_PROTO((int));
+extern DL_IMPORT(int) PyToken_TwoChars Py_PROTO((int, int));
#ifdef __cplusplus
}