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/vax.h | |
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/vax.h')
-rw-r--r-- | usr.bin/gprof/vax.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/gprof/vax.h b/usr.bin/gprof/vax.h index d116d96ca70..0f7495f0771 100644 --- a/usr.bin/gprof/vax.h +++ b/usr.bin/gprof/vax.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vax.h,v 1.3 2003/06/03 02:56:08 millert Exp $ */ +/* $OpenBSD: vax.h,v 1.4 2006/03/25 19:06:36 espie Exp $ */ /* $NetBSD: vax.h,v 1.4 1995/04/19 07:16:31 cgd Exp $ */ /* @@ -62,3 +62,7 @@ struct modebyte { unsigned int modefield:4; }; +unsigned long reladdr(struct modebyte *); +long operandlength(struct modebyte *); +operandenum operandmode(struct modebyte *); +char *operandname(operandenum); |