From f63cd6dc68fd304f7a19e32d2a4c1e7fd9f395b6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 28 Jul 1997 21:40:13 +0000 Subject: [PATCH] Fix prototypes. --- gmon/sys/gmon.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gmon/sys/gmon.h b/gmon/sys/gmon.h index 2eff69b01c..8368ca1ce3 100644 --- a/gmon/sys/gmon.h +++ b/gmon/sys/gmon.h @@ -169,10 +169,11 @@ extern struct gmonparam _gmonparam; __BEGIN_DECLS /* Set up data structures and start profiling. */ -void monstartup __P ((u_long lowpc, u_long highpc)); +extern void __monstartup __P ((u_long __lowpc, u_long __highpc)); +extern void monstartup __P ((u_long __lowpc, u_long __highpc)); /* Clean up profiling and write out gmon.out. */ -void _mcleanup __P ((void)); +extern void _mcleanup __P ((void)); __END_DECLS -- 2.11.4.GIT