Need to add default decl of DL_IMPORT, for mymalloc.h
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 @@
 
 #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