summaryrefslogtreecommitdiffstats
path: root/Python/importdl.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-11-05 02:45:59 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-11-05 02:45:59 (GMT)
commit603c6831d08d8598f76e767acdd6d37227b3e9ec (patch)
tree81814cbe1ce174dfa90f5ed0177a55f570202d7f /Python/importdl.h
parentc44403995e6fd1a55b39ca86ceb71955cbbf5e25 (diff)
downloadcpython-603c6831d08d8598f76e767acdd6d37227b3e9ec.zip
cpython-603c6831d08d8598f76e767acdd6d37227b3e9ec.tar.gz
cpython-603c6831d08d8598f76e767acdd6d37227b3e9ec.tar.bz2
SF patch 473749 compile under OS/2 VA C++, from Michael Muller.
Changes enabling Python to compile under OS/2 Visual Age C++.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r--Python/importdl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/importdl.h b/Python/importdl.h
index 4193620..76fd05d 100644
--- a/Python/importdl.h
+++ b/Python/importdl.h
@@ -38,6 +38,7 @@ extern PyObject *_PyImport_LoadDynamicModule(char *name, char *pathname,
typedef FARPROC dl_funcptr;
#else
#ifdef PYOS_OS2
+#include <os2def.h>
typedef int (* APIENTRY dl_funcptr)();
#else
typedef void (*dl_funcptr)(void);