diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-10-25 06:58:53 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-10-25 06:58:53 +0000 |
| commit | 1471a7951441deee29fb5f745ed67ee5209eb1f2 (patch) | |
| tree | cdc507889bcf20b63bcb5bbeb3a63bd2a7069583 | |
| parent | 1ab6205ce117ac9585918aaf9935ce90f06402cd (diff) | |
Notes
| -rw-r--r-- | sys/libkern/mcount.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/libkern/mcount.c b/sys/libkern/mcount.c index e7105d0f8e1b..ac79783372a4 100644 --- a/sys/libkern/mcount.c +++ b/sys/libkern/mcount.c @@ -36,12 +36,15 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$Id: mcount.c,v 1.8 1996/08/28 20:15:12 bde Exp $"; + "$Id: mcount.c,v 1.9 1996/10/17 19:32:25 bde Exp $"; #endif #include <sys/param.h> #include <sys/gmon.h> #ifdef KERNEL +#ifndef GUPROF +#include <sys/systm.h> +#endif #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/pmap.h> |
