From e043516d4d5b42044366e111306d65666bb47617 Mon Sep 17 00:00:00 2001 From: Alfred Perlstein 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. --- usr.bin/gprof/gprof.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/gprof') diff --git a/usr.bin/gprof/gprof.h b/usr.bin/gprof/gprof.h index ba3ee34a1de2..7214abff5c41 100644 --- a/usr.bin/gprof/gprof.h +++ b/usr.bin/gprof/gprof.h @@ -65,7 +65,7 @@ #if luna68k # include "luna68k.h" #endif -#if i386 +#if __i386__ # include "i386.h" #endif #if mips -- cgit v1.2.3