From f0facdc5dd1763536763ab47d1a5bc11e3acd256 Mon Sep 17 00:00:00 2001 From: alfred Date: Thu, 30 May 2002 07:00:42 +0000 Subject: Check for defined(__i386__) instead of just defined(i386) since the compiler will be updated to only define(__i386__) for ANSI cleanliness. --- lib/libc/gmon/gmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc') 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"); -- cgit v1.1