summaryrefslogtreecommitdiff
path: root/Include/pgenheaders.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-22 17:28:54 +0000
committerGuido van Rossum <guido@python.org>1996-05-22 17:28:54 +0000
commit3c129037ae2ea6b588492e35db600b417d0686fc (patch)
tree0f8c582f906222dcd4e4d9f69cda00dc76d1982e /Include/pgenheaders.h
parent21849326d71b2be0125f5efa0bc5e46196da1b4d (diff)
downloadcpython-3c129037ae2ea6b588492e35db600b417d0686fc.tar.gz
Define DL_IMPORT if necessary.
Include pydebug.h instead of declaring Py_FatalError.
Diffstat (limited to 'Include/pgenheaders.h')
-rw-r--r--Include/pgenheaders.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Include/pgenheaders.h b/Include/pgenheaders.h
index 8c6764b37f..aece3116bb 100644
--- a/Include/pgenheaders.h
+++ b/Include/pgenheaders.h
@@ -34,6 +34,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
#endif
+/* 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>
#include <string.h>
@@ -49,7 +54,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "myproto.h"
#include "mymalloc.h"
-extern void Py_FatalError Py_PROTO((char *));
+#include "pydebug.h"
#ifdef __cplusplus
}