summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-05-30 07:00:42 +0000
committeralfred <alfred@FreeBSD.org>2002-05-30 07:00:42 +0000
commitf0facdc5dd1763536763ab47d1a5bc11e3acd256 (patch)
tree09fd1f8eef7bd8ed2f925fca35c25efa2f242804 /lib
parent67d93076d6eb885f73d19f0676224d6b8da33a6b (diff)
downloadFreeBSD-src-f0facdc5dd1763536763ab47d1a5bc11e3acd256.zip
FreeBSD-src-f0facdc5dd1763536763ab47d1a5bc11e3acd256.tar.gz
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gmon/gmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gmon/gmon.c b/lib/libc/gmon/gmon.c
index 49326e5..34dc936 100644
--- a/lib/libc/gmon/gmon.c
+++ b/lib/libc/gmon/gmon.c
@@ -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");
OpenPOWER on IntegriCloud