diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 1998-11-20 02:09:17 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 1998-11-20 02:09:17 +0000 |
commit | 944e8edd97527165d4fd799a001eeab761673e4d (patch) | |
tree | 053e7dff0c5264401bd532a7b613cd56cf5d3ccb /sys/arch/sparc/include | |
parent | e3e5bcddfaffbf4fde6cc2dc63df06dd60feecf8 (diff) |
make _MCOUNT_DECL non-static so the compiler doesn't bitch and
a profiled kernel can be built for the sparc
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r-- | sys/arch/sparc/include/profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/include/profile.h b/sys/arch/sparc/include/profile.h index 13af168d2f3..6b8e283cb85 100644 --- a/sys/arch/sparc/include/profile.h +++ b/sys/arch/sparc/include/profile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: profile.h,v 1.4 1997/08/08 08:26:40 downsj Exp $ */ +/* $OpenBSD: profile.h,v 1.5 1998/11/20 02:09:16 marc Exp $ */ /* $NetBSD: profile.h,v 1.8 1997/02/01 20:56:40 mrg Exp $ */ /* @@ -66,7 +66,7 @@ __asm__("add %o7, 8, %o1"); #endif -#define _MCOUNT_DECL static void _mcount +#define _MCOUNT_DECL /* static */ void _mcount #ifdef _KERNEL /* |