diff options
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c index ff5aefe..2c20690 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -37,6 +37,11 @@ PERFORMANCE OF THIS SOFTWARE. #include "config.h" +/* config.h may or may not define DL_IMPORT */ +#ifndef DL_IMPORT /* declarations for DLL import/export */ +#define DL_IMPORT(RTYPE) RTYPE +#endif + #include <stdio.h> #ifdef HAVE_STDLIB_H |