diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-30 07:00:42 +0000 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-30 07:00:42 +0000 |
commit | e043516d4d5b42044366e111306d65666bb47617 (patch) | |
tree | 09fd1f8eef7bd8ed2f925fca35c25efa2f242804 /usr.bin/gprof | |
parent | df182f6dd13a33f912a7c6241e8505aedffc4f57 (diff) | |
download | src-e043516d4d5b42044366e111306d65666bb47617.tar.gz src-e043516d4d5b42044366e111306d65666bb47617.zip |
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
Notes
Notes:
svn path=/head/; revision=97551
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r-- | usr.bin/gprof/gprof.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |