--- src/lib/libc/gmon/gmon.c 2005/03/09 18:52:21 1.7 +++ src/lib/libc/gmon/gmon.c 2005/11/13 01:18:20 1.8 @@ -69,9 +69,7 @@ void moncontrol (int); static int hertz (void); void -monstartup(lowpc, highpc) - u_long lowpc; - u_long highpc; +monstartup(u_long lowpc, u_long highpc) { int o; char *cp; @@ -134,7 +132,7 @@ monstartup(lowpc, highpc) } void -_mcleanup() +_mcleanup(void) { int fd; int fromindex; @@ -227,8 +225,7 @@ _mcleanup() * all the data structures are ready. */ void -moncontrol(mode) - int mode; +moncontrol(int mode) { struct gmonparam *p = &_gmonparam; @@ -248,7 +245,7 @@ moncontrol(mode) * if something goes wrong, we return 0, an impossible hertz. */ static int -hertz() +hertz(void) { struct itimerval tim;