diff options
author | jasoni <jasoni@cvs.openbsd.org> | 2001-05-24 06:00:10 +0000 |
---|---|---|
committer | jasoni <jasoni@cvs.openbsd.org> | 2001-05-24 06:00:10 +0000 |
commit | 285e264ade22002eaddaafc4b84537cb1b8e8685 (patch) | |
tree | 6bb6f6d695d0c826cc8e3d3d353c7f75a91fda8e /sys/compat/linux/linux_cdrom.c | |
parent | 9e230f0d02a97c0ea607c9b8ca40742c43de9ba5 (diff) |
style/cleanup (of function headers)
Diffstat (limited to 'sys/compat/linux/linux_cdrom.c')
-rw-r--r-- | sys/compat/linux/linux_cdrom.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_cdrom.c b/sys/compat/linux/linux_cdrom.c index d8a6e6e5ae1..365a198e879 100644 --- a/sys/compat/linux/linux_cdrom.c +++ b/sys/compat/linux/linux_cdrom.c @@ -1,5 +1,5 @@ -/* $OpenBSD: linux_cdrom.c,v 1.4 1998/01/23 11:30:06 provos Exp $ */ +/* $OpenBSD: linux_cdrom.c,v 1.5 2001/05/24 06:00:08 jasoni Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> * All rights reserved. @@ -66,15 +66,16 @@ bsd_addr_to_linux_addr(bsd, linux, format) } int -linux_ioctl_cdrom(p, uap, retval) +linux_ioctl_cdrom(p, v, retval) register struct proc *p; + void *v; + register_t *retval; +{ register struct linux_sys_ioctl_args /* { syscallarg(int) fd; syscallarg(u_long) com; syscallarg(caddr_t) data; - } */ *uap; - register_t *retval; -{ + } */ *uap = v; register struct file *fp; register struct filedesc *fdp; caddr_t sg; |