diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 (GMT) |
commit | 91a681debf9ffec155d0aff8a0bb5f965f592e16 (patch) | |
tree | 09f28782e3b0a24e64deddeafc9df24ac93855ca /Include/pygetopt.h | |
parent | 44121a6bc9828c993932b87e442440dc4f260f3c (diff) | |
download | cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.zip cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.gz cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.bz2 |
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/pygetopt.h')
-rw-r--r-- | Include/pygetopt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/pygetopt.h b/Include/pygetopt.h index 9c74cbe..80908be 100644 --- a/Include/pygetopt.h +++ b/Include/pygetopt.h @@ -5,11 +5,11 @@ extern "C" { #endif -extern DL_IMPORT(int) _PyOS_opterr; -extern DL_IMPORT(int) _PyOS_optind; -extern DL_IMPORT(char *) _PyOS_optarg; +PyAPI_DATA(int) _PyOS_opterr; +PyAPI_DATA(int) _PyOS_optind; +PyAPI_DATA(char *) _PyOS_optarg; -DL_IMPORT(int) _PyOS_GetOpt(int argc, char **argv, char *optstring); +PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring); #ifdef __cplusplus } |