diff options
Diffstat (limited to 'lib/libc/gmon/mcount.c')
-rw-r--r-- | lib/libc/gmon/mcount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gmon/mcount.c b/lib/libc/gmon/mcount.c index f544ad10a08..b81962d0b0a 100644 --- a/lib/libc/gmon/mcount.c +++ b/lib/libc/gmon/mcount.c @@ -32,7 +32,7 @@ */ #if !defined(lint) && !defined(_KERNEL) && defined(LIBC_SCCS) -static char rcsid[] = "$OpenBSD: mcount.c,v 1.4 1996/08/19 08:28:04 tholo Exp $"; +static char rcsid[] = "$OpenBSD: mcount.c,v 1.5 1997/01/30 05:05:00 deraadt Exp $"; #endif #include <sys/param.h> @@ -53,6 +53,7 @@ static char rcsid[] = "$OpenBSD: mcount.c,v 1.4 1996/08/19 08:28:04 tholo Exp $" * both frompcindex and frompc. Any reasonable, modern compiler will * perform this optimization. */ +_MCOUNT_DECL __P((u_long frompc, u_long selfpc)); _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */ register u_long frompc, selfpc; { |