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/i386/isa/joyreg.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/i386/isa/joyreg.h')
-rw-r--r-- | sys/arch/i386/isa/joyreg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/isa/joyreg.h b/sys/arch/i386/isa/joyreg.h index ccce2ec207e..d12bc61754e 100644 --- a/sys/arch/i386/isa/joyreg.h +++ b/sys/arch/i386/isa/joyreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: joyreg.h,v 1.2 1999/01/13 07:26:01 niklas Exp $ */ +/* $OpenBSD: joyreg.h,v 1.3 2002/03/14 01:26:33 millert Exp $ */ /* $NetBSD: joy.c,v 1.3 1996/05/05 19:46:15 christos Exp $ */ /*- @@ -66,5 +66,5 @@ struct joy_softc { int timeout[2]; }; -int joyopen __P((dev_t, int, int, struct proc *)); -int joyclose __P((dev_t, int, int, struct proc *)); +int joyopen(dev_t, int, int, struct proc *); +int joyclose(dev_t, int, int, struct proc *); |