diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 +0000 |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 +0000 |
commit | 91a681debf9ffec155d0aff8a0bb5f965f592e16 (patch) | |
tree | 09f28782e3b0a24e64deddeafc9df24ac93855ca /Include/token.h | |
parent | 44121a6bc9828c993932b87e442440dc4f260f3c (diff) | |
download | cpython-git-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.gz |
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/token.h')
-rw-r--r-- | Include/token.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/token.h b/Include/token.h index 3f581065da..4e2ec06b68 100644 --- a/Include/token.h +++ b/Include/token.h @@ -71,10 +71,10 @@ extern "C" { #define ISEOF(x) ((x) == ENDMARKER) -extern DL_IMPORT(char *) _PyParser_TokenNames[]; /* Token names */ -extern DL_IMPORT(int) PyToken_OneChar(int); -extern DL_IMPORT(int) PyToken_TwoChars(int, int); -extern DL_IMPORT(int) PyToken_ThreeChars(int, int, int); +PyAPI_DATA(char *) _PyParser_TokenNames[]; /* Token names */ +PyAPI_FUNC(int) PyToken_OneChar(int); +PyAPI_FUNC(int) PyToken_TwoChars(int, int); +PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int); #ifdef __cplusplus } |