Author: Armin Rigo <[email protected]> Branch: Changeset: r80723:c8be68c20100 Date: 2015-11-17 09:38 +0100 http://bitbucket.org/pypy/pypy/changeset/c8be68c20100/
Log: maybe a fix: this is needed for MS_WIN32 to be defined diff --git a/pypy/module/_cffi_backend/src/parse_c_type.c b/pypy/module/_cffi_backend/src/parse_c_type.c --- a/pypy/module/_cffi_backend/src/parse_c_type.c +++ b/pypy/module/_cffi_backend/src/parse_c_type.c @@ -4,6 +4,7 @@ #include <errno.h> #if defined(_MSC_VER) +# include <windows.h> typedef size_t uintptr_t; #else # include <stdint.h> _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
