From: Victor Stinner Date: Mon, 17 Jun 2013 20:03:35 +0000 (+0200) Subject: ctypes: AIX needs an explicit #include to get alloca() X-Git-Tag: v2.7.6rc1~352 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7b0990a05c887e2a0663d9ae5cf78e84f1ed716;p=thirdparty%2FPython%2Fcpython.git ctypes: AIX needs an explicit #include to get alloca() --- diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index 6daf455a06e9..c8ce10554855 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -75,6 +75,7 @@ #include #include "ctypes.h" +#include #if defined(_DEBUG) || defined(__MINGW32__) /* Don't use structured exception handling on Windows if this is defined.