mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
This commit is contained in:
parent
44121a6bc9
commit
91a681debf
51 changed files with 661 additions and 665 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue