diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-17 05:24:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-17 05:24:25 +0000 |
commit | 1417d9fd38968b85b80138ecf619d0cc8c197cc0 (patch) | |
tree | f533c3347d6ce030d053fe836a0e08fe5db5f80e /sys/compat/linux/linux_ioctl.h | |
parent | 61c97d6369b446092078e0e99a5541a8ee8b9417 (diff) |
Good fixes and changes from latest Net.
Diffstat (limited to 'sys/compat/linux/linux_ioctl.h')
-rw-r--r-- | sys/compat/linux/linux_ioctl.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_ioctl.h b/sys/compat/linux/linux_ioctl.h index f1c8592eaf5..6f1996a16d7 100644 --- a/sys/compat/linux/linux_ioctl.h +++ b/sys/compat/linux/linux_ioctl.h @@ -1,4 +1,5 @@ -/* $NetBSD: linux_ioctl.h,v 1.3 1996/03/08 04:56:04 mycroft Exp $ */ +/* $OpenBSD: linux_ioctl.h,v 1.3 1996/04/17 05:23:51 mickey Exp $ */ +/* $NetBSD: linux_ioctl.h,v 1.4 1996/04/05 00:01:36 christos Exp $ */ /* * Copyright (c) 1995 Frank van der Linden @@ -33,3 +34,12 @@ #define _LINUX_IO(x,y) (((x) << 8) | (y)) #define LINUX_IOCGROUP(x) (((x) >> 8) & 0xff) + +struct linux_sys_ioctl_args; +int linux_ioctl_audio __P((struct proc *, struct linux_sys_ioctl_args *, + register_t *)); +int linux_machdepioctl __P((struct proc *, void *, register_t *)); +int linux_ioctl_termios __P((struct proc *, struct linux_sys_ioctl_args *, + register_t *)); +int linux_ioctl_socket __P((struct proc *, struct linux_sys_ioctl_args *, + register_t *)); |