From 603c6831d08d8598f76e767acdd6d37227b3e9ec Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 5 Nov 2001 02:45:59 +0000 Subject: SF patch 473749 compile under OS/2 VA C++, from Michael Muller. Changes enabling Python to compile under OS/2 Visual Age C++. --- Python/importdl.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/importdl.h') diff --git a/Python/importdl.h b/Python/importdl.h index 4193620bd2..76fd05d293 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 typedef int (* APIENTRY dl_funcptr)(); #else typedef void (*dl_funcptr)(void); -- cgit v1.2.1