From: Victor Stinner Date: Mon, 17 Jun 2013 20:01:53 +0000 (+0200) Subject: ctypes: AIX needs an explicit #include to get alloca() X-Git-Tag: v3.4.0a1~457^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43b2639fe2a05f74b987bd7e8818a958149565c8;p=python ctypes: AIX needs an explicit #include to get alloca() --- diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index f5d8f52e3f..d0693b6c7d 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -70,6 +70,7 @@ #include #include "ctypes.h" +#include #if defined(_DEBUG) || defined(__MINGW32__) /* Don't use structured exception handling on Windows if this is defined.