diff options
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index 3cea591..8ba466f 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -31,7 +31,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "patchlevel.h" #include "config.h" -#include "pyport.h" /* config.h may or may not define DL_IMPORT */ #ifndef DL_IMPORT /* declarations for DLL import/export */ @@ -51,6 +50,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif +#include <assert.h> + +#include "pyport.h" #include "myproto.h" |