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_termios.c | |
parent | 9e230f0d02a97c0ea607c9b8ca40742c43de9ba5 (diff) |
style/cleanup (of function headers)
Diffstat (limited to 'sys/compat/linux/linux_termios.c')
-rw-r--r-- | sys/compat/linux/linux_termios.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_termios.c b/sys/compat/linux/linux_termios.c index 5000c744ddf..810f90379f7 100644 --- a/sys/compat/linux/linux_termios.c +++ b/sys/compat/linux/linux_termios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_termios.c,v 1.8 2000/08/18 17:40:24 niklas Exp $ */ +/* $OpenBSD: linux_termios.c,v 1.9 2001/05/24 06:00:09 jasoni Exp $ */ /* $NetBSD: linux_termios.c,v 1.3 1996/04/05 00:01:54 christos Exp $ */ /* @@ -438,15 +438,16 @@ bsd_termios_to_linux_termios(bts, lts) } int -linux_ioctl_termios(p, uap, retval) +linux_ioctl_termios(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; u_long com; |