diff options
author | jb <jb@FreeBSD.org> | 1998-03-09 04:42:19 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-03-09 04:42:19 +0000 |
commit | e96cb731c14cdff67c6de83b4e96c943949f7f4c (patch) | |
tree | 7b5acd10e823d7a91fdfc6a27c7478e82988957c /lib/libc/gmon/mcount.c | |
parent | c2a72d9ed9e91a68a66599e2224b6a4c2338d2ae (diff) | |
download | FreeBSD-src-e96cb731c14cdff67c6de83b4e96c943949f7f4c.zip FreeBSD-src-e96cb731c14cdff67c6de83b4e96c943949f7f4c.tar.gz |
These files are very specific to FreeBSD kernels, so silently compile
no code when building a library with __NETBSD_SYSCALLS defined.
Diffstat (limited to 'lib/libc/gmon/mcount.c')
-rw-r--r-- | lib/libc/gmon/mcount.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/gmon/mcount.c b/lib/libc/gmon/mcount.c index a48e558..18633c3 100644 --- a/lib/libc/gmon/mcount.c +++ b/lib/libc/gmon/mcount.c @@ -36,9 +36,10 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mcount.c,v 1.9 1997/02/22 14:58:27 peter Exp $"; #endif +#ifndef __NETBSD_SYSCALLS #include <sys/param.h> #include <sys/gmon.h> #ifdef KERNEL @@ -323,3 +324,5 @@ mexitcount(selfpc) } } #endif /* GUPROF */ + +#endif |