Author: Armin Rigo <[email protected]> Branch: Changeset: r861:68726e4c699c Date: 2012-08-18 12:02 +0200 http://bitbucket.org/cffi/cffi/changeset/68726e4c699c/
Log: (liuzhenhai) issue #18: a missing #include on Windows. diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -5,6 +5,7 @@ #ifdef MS_WIN32 #include <windows.h> #include "misc_win32.h" +#include <malloc.h> /* for alloca() */ #else #include <stddef.h> #include <stdint.h> _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
