diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-03-25 19:06:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-03-25 19:06:37 +0000 |
commit | d8a821c355d46341b63e7349a1fae44ce8dd61ee (patch) | |
tree | 3b62c3a634a8954407d49e7b7151f50065e41f57 /usr.bin/gprof/ns32k.c | |
parent | adcff54e7a7c71a7ee978b2f639508683e35259b (diff) |
add missing prototypes all over the place, u_long -> unsigned long (userland
code).
okay kettenis@, comments by ray@
Diffstat (limited to 'usr.bin/gprof/ns32k.c')
-rw-r--r-- | usr.bin/gprof/ns32k.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/gprof/ns32k.c b/usr.bin/gprof/ns32k.c index 213c5e126b8..5c766776e84 100644 --- a/usr.bin/gprof/ns32k.c +++ b/usr.bin/gprof/ns32k.c @@ -1,8 +1,8 @@ -/* $OpenBSD: ns32k.c,v 1.3 2001/03/22 05:18:30 mickey Exp $ */ +/* $OpenBSD: ns32k.c,v 1.4 2006/03/25 19:06:36 espie Exp $ */ /* $NetBSD: ns32k.c,v 1.3 1995/04/19 07:16:13 cgd Exp $ */ #ifndef lint -static char rcsid[] = "$OpenBSD: ns32k.c,v 1.3 2001/03/22 05:18:30 mickey Exp $"; +static char rcsid[] = "$OpenBSD: ns32k.c,v 1.4 2006/03/25 19:06:36 espie Exp $"; #endif /* not lint */ #include "gprof.h" @@ -11,9 +11,6 @@ static char rcsid[] = "$OpenBSD: ns32k.c,v 1.3 2001/03/22 05:18:30 mickey Exp $" * gprof -c isn't currently supported... */ void -findcall( parentp , p_lowpc , p_highpc ) - nltype *parentp; - unsigned long p_lowpc; - unsigned long p_highpc; +findcall(nltype *parentp, unsigned long p_lowpc, unsigned long p_highpc) { } |