diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
commit | 9845da8acd3a38eabc247666f9968d3db78a7bdc (patch) | |
tree | 09badcc5e6d41892fb97db0ff41c5760fa000fe8 /Python/importdl.h | |
parent | 79b2bfe430a7ab9493f737ce2eddb080170dd0e5 (diff) | |
parent | cabe5e76cfca05fc7dc4b67c252af57ce8d74474 (diff) | |
download | cpython-9845da8acd3a38eabc247666f9968d3db78a7bdc.tar.gz |
merge 3.3
Diffstat (limited to 'Python/importdl.h')
-rw-r--r-- | Python/importdl.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/importdl.h b/Python/importdl.h index 6b9cf750a4..6a51a91d2c 100644 --- a/Python/importdl.h +++ b/Python/importdl.h @@ -18,13 +18,8 @@ extern PyObject *_PyImport_LoadDynamicModule(PyObject *name, PyObject *pathname, #include <windows.h> typedef FARPROC dl_funcptr; #else -#if defined(PYOS_OS2) && !defined(PYCC_GCC) -#include <os2def.h> -typedef int (* APIENTRY dl_funcptr)(); -#else typedef void (*dl_funcptr)(void); #endif -#endif #ifdef __cplusplus |