* include/ffi.h.in: Fix i386 win32 compilation.

From-SVN: r57691
This commit is contained in:
Bo Thorsen 2002-10-01 15:38:00 +00:00 committed by Bo Thorsen
parent bc9ec51b0b
commit 5d2975841c
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-10-01 Bo Thorsen <bo@smetana.suse.de>
* include/ffi.h.in: Fix i386 win32 compilation.
2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
* configure.in: Add s390x-*-linux-* target.

View File

@ -202,7 +202,7 @@ typedef enum ffi_abi {
#endif
/* ---- Intel x86 and AMD x86-64 - */
#if defined(__i386__) || defined(__x86_64__)
#if !defined(X86_WIN32) && (defined(__i386__) || defined(__x86_64__))
FFI_SYSV,
FFI_UNIX64, /* Unix variants all use the same ABI for x86-64 */
#ifdef __i386__