diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-07-17 18:41:20 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-07-17 18:41:20 +0000 |
commit | 66ea27ead1b92a8730555578c119d6f134ff8eb9 (patch) | |
tree | e5381d85afaac8614a52e652d0b23f4007e4b92f /sys/dev/usb/urio.c | |
parent | cb5f5af3e064bdc4df0430305632db96551d5fa3 (diff) | |
download | FreeBSD-src-66ea27ead1b92a8730555578c119d6f134ff8eb9.zip FreeBSD-src-66ea27ead1b92a8730555578c119d6f134ff8eb9.tar.gz |
Remove __P prototypes to reduce diffs between the NetBSD and FreeBSD
versions.
Diffstat (limited to 'sys/dev/usb/urio.c')
-rw-r--r-- | sys/dev/usb/urio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c index fc1d8da..607b9cb 100644 --- a/sys/dev/usb/urio.c +++ b/sys/dev/usb/urio.c @@ -97,11 +97,11 @@ int uriodebug = 100; #define RIO_NODIR 2 #if defined(__NetBSD__) -int urioopen __P((dev_t, int, int, struct proc *)); -int urioclose __P((dev_t, int, int, struct proc *p)); -int urioread __P((dev_t, struct uio *uio, int)); -int uriowrite __P((dev_t, struct uio *uio, int)); -int urioioctl __P((dev_t, u_long, caddr_t, int, struct proc *)); +int urioopen(dev_t, int, int, struct proc *); +int urioclose(dev_t, int, int, struct proc *p); +int urioread(dev_t, struct uio *uio, int); +int uriowrite(dev_t, struct uio *uio, int); +int urioioctl(dev_t, u_long, caddr_t, int, struct proc *); cdev_decl(urio); #define RIO_UE_GET_DIR(p) ((UE_GET_DIR(p) == UE_DIR_IN) ? RIO_IN :\ |