diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 07:57:43 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 07:57:43 +0000 |
commit | ee52c4c5c01690165e86f18f0ab467acf6ee81df (patch) | |
tree | dfe725ae201cd2ceb0d3e4c955a2288bc861aca7 /lib/libc/gmon/mcount.c | |
parent | 0a3d8ac4d3f5422bec355485a8c4e059aaeb5a4b (diff) | |
download | FreeBSD-src-ee52c4c5c01690165e86f18f0ab467acf6ee81df.zip FreeBSD-src-ee52c4c5c01690165e86f18f0ab467acf6ee81df.tar.gz |
Change a test for NETBSD_SYSCALLS to __alpha__. We're not ready to
do profiling on alpha yet.
Diffstat (limited to 'lib/libc/gmon/mcount.c')
-rw-r--r-- | lib/libc/gmon/mcount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gmon/mcount.c b/lib/libc/gmon/mcount.c index 4514b98f..545faba 100644 --- a/lib/libc/gmon/mcount.c +++ b/lib/libc/gmon/mcount.c @@ -36,10 +36,10 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$Id: mcount.c,v 1.12 1998/07/10 09:26:40 bde Exp $"; + "$Id: mcount.c,v 1.13 1998/07/14 05:09:41 bde Exp $"; #endif -#ifndef __NETBSD_SYSCALLS +#ifndef __alpha__ #include <sys/param.h> #include <sys/gmon.h> |