summaryrefslogtreecommitdiff
path: root/cffi/vengine_cpy.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2014-06-24 17:09:21 +0200
committerArmin Rigo <arigo@tunes.org>2014-06-24 17:09:21 +0200
commitacb3484b884871cb9559cd1fc7a1864319c20193 (patch)
treeb091c19e53d1a63c62c86e4ce02cfc746de049d3 /cffi/vengine_cpy.py
parentf4cf9f0776ac4231b67e529f48e39f03194c9065 (diff)
downloadcffi-acb3484b884871cb9559cd1fc7a1864319c20193.tar.gz
Don't check MS_WIN32, it's not always defined even on MSVC.
Diffstat (limited to 'cffi/vengine_cpy.py')
-rw-r--r--cffi/vengine_cpy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cffi/vengine_cpy.py b/cffi/vengine_cpy.py
index 3a3a10e..31793f0 100644
--- a/cffi/vengine_cpy.py
+++ b/cffi/vengine_cpy.py
@@ -772,7 +772,7 @@ cffimod_header = r'''
/* this block of #ifs should be kept exactly identical between
c/_cffi_backend.c, cffi/vengine_cpy.py, cffi/vengine_gen.py */
-#if defined(MS_WIN32) && defined(_MSC_VER)
+#if defined(_MSC_VER)
# include <malloc.h> /* for alloca() */
# if _MSC_VER < 1600 /* MSVC < 2010 */
typedef __int8 int8_t;