mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
This commit is contained in:
parent
df182f6dd1
commit
e043516d4d
3 changed files with 3 additions and 3 deletions
|
|
@ -32,7 +32,7 @@
|
|||
error: DYN_ALLOC not yet supported in match.s
|
||||
#endif
|
||||
|
||||
#if defined(i386) || defined(_I386)
|
||||
#if defined(i386) || defined(_I386) || defined(__i386__)
|
||||
|
||||
/* This version is for 386 Unix or OS/2 in 32 bit mode.
|
||||
* Warning: it uses the AT&T syntax: mov source,dest
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$");
|
|||
|
||||
#include "libc_private.h"
|
||||
|
||||
#if defined(__ELF__) && (defined(i386) || defined(__sparc64__))
|
||||
#if defined(__ELF__) && (defined(__i386__) || defined(__sparc64__))
|
||||
extern char *minbrk asm (".minbrk");
|
||||
#else
|
||||
extern char *minbrk asm ("minbrk");
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
#if luna68k
|
||||
# include "luna68k.h"
|
||||
#endif
|
||||
#if i386
|
||||
#if __i386__
|
||||
# include "i386.h"
|
||||
#endif
|
||||
#if mips
|
||||
|
|
|
|||
Loading…
Reference in a new issue