diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/hp300/dev/acvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hp300/dev/acvar.h')
-rw-r--r-- | sys/arch/hp300/dev/acvar.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/hp300/dev/acvar.h b/sys/arch/hp300/dev/acvar.h index 96b622886e9..afe4c2e6eda 100644 --- a/sys/arch/hp300/dev/acvar.h +++ b/sys/arch/hp300/dev/acvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acvar.h,v 1.4 1997/04/16 11:55:56 downsj Exp $ */ +/* $OpenBSD: acvar.h,v 1.5 2002/03/14 01:26:30 millert Exp $ */ /* $NetBSD: acvar.h,v 1.4 1997/03/31 07:32:15 scottr Exp $ */ /* @@ -89,12 +89,12 @@ struct ac_restatdb { }; #ifdef _KERNEL -int accommand __P((dev_t, int, char *, int)); +int accommand(dev_t, int, char *, int); -void acstart __P((void *)); -void acgo __P((void *)); -void acintr __P((void *, int)); +void acstart(void *); +void acgo(void *); +void acintr(void *, int); -int acgeteinfo __P((dev_t)); -void acconvert __P((char *, char *, int)); +int acgeteinfo(dev_t); +void acconvert(char *, char *, int); #endif /* _KERNEL */ |