summaryrefslogtreecommitdiff
path: root/lib/libc/gmon
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-25 21:16:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-25 21:16:48 +0000
commitb590d5fa47f64ba95e8d2b85507b1eca62c2f8ac (patch)
tree553f7f61f46277664ade81c8c019bcf42ceec49d /lib/libc/gmon
parent5783f1537989600c05141f2643ba6131b7cd31a1 (diff)
protos
Diffstat (limited to 'lib/libc/gmon')
-rw-r--r--lib/libc/gmon/gmon.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/gmon/gmon.c b/lib/libc/gmon/gmon.c
index c76d508dbf9..4628b1f3198 100644
--- a/lib/libc/gmon/gmon.c
+++ b/lib/libc/gmon/gmon.c
@@ -28,7 +28,7 @@
*/
#if !defined(lint) && defined(LIBC_SCCS)
-static char rcsid[] = "$OpenBSD: gmon.c,v 1.15 2003/06/02 20:18:35 millert Exp $";
+static char rcsid[] = "$OpenBSD: gmon.c,v 1.16 2003/06/25 21:16:47 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -55,6 +55,8 @@ static int s_scale;
void moncontrol(int);
static int hertz(void);
+void monstartup(u_long lowpc, u_long highpc);
+void _mcleanup(void);
void
monstartup(lowpc, highpc)
@@ -122,7 +124,7 @@ monstartup(lowpc, highpc)
}
void
-_mcleanup()
+_mcleanup(void)
{
int fd;
int fromindex;