Don't include <sys/ioctl.h> in the kernel. Stage 1: don't include

it when it is not used.  In most cases, the reasons for including it
went away when the special ioctl headers became self-sufficient.
This commit is contained in:
Bruce Evans 1997-03-24 11:25:10 +00:00
parent cb07fc9803
commit fce002fdef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24203
106 changed files with 86 additions and 193 deletions

View file

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
* $Id$
* $Id: npx.c,v 1.39 1997/02/22 09:36:57 peter Exp $
*/
#include "npx.h"
@ -48,7 +48,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#ifdef NPX_DEBUG
#include <sys/syslog.h>
#endif

View file

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.229 1997/02/24 00:37:43 alex Exp $
* $Id: machdep.c,v 1.230 1997/03/22 18:52:10 kato Exp $
*/
#include "npx.h"
@ -61,7 +61,6 @@
#include <sys/mbuf.h>
#include <sys/mount.h>
#include <sys/msgbuf.h>
#include <sys/ioctl.h>
#include <sys/sysent.h>
#include <sys/tty.h>
#include <sys/sysctl.h>

View file

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
* $Id$
* $Id: npx.c,v 1.39 1997/02/22 09:36:57 peter Exp $
*/
#include "npx.h"
@ -48,7 +48,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#ifdef NPX_DEBUG
#include <sys/syslog.h>
#endif

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
* $Id: linux_file.c,v 1.11 1997/02/22 09:38:20 peter Exp $
*/
#include <sys/param.h>
@ -35,7 +35,6 @@
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/vnode.h>
#include <sys/malloc.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_misc.c,v 1.24 1997/02/22 09:38:23 peter Exp $
* $Id: linux_misc.c,v 1.25 1997/03/23 03:36:04 bde Exp $
*/
#include <sys/param.h>
@ -38,7 +38,6 @@
#include <sys/dirent.h>
#include <sys/fcntl.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/imgact_aout.h>
#include <sys/mount.h>
#include <sys/namei.h>

View file

@ -27,7 +27,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp
* $Id$
* $Id: linux_util.c,v 1.5 1997/02/22 09:38:29 peter Exp $
*/
#include <sys/param.h>
@ -37,7 +37,6 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/vnode.h>

View file

@ -1,4 +1,4 @@
/* $Id$ */
/* $Id: ccd.c,v 1.21 1997/02/22 09:28:56 peter Exp $ */
/* $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $ */
@ -104,7 +104,6 @@
#include <sys/namei.h>
#include <sys/conf.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <ufs/ffs/fs.h>
#include <sys/device.h>

View file

@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: cy.c,v 1.45 1997/02/22 09:36:03 peter Exp $
* $Id: cy.c,v 1.46 1997/03/23 03:34:44 bde Exp $
*/
#include "cy.h"
@ -71,7 +71,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: cy.c,v 1.45 1997/02/22 09:36:03 peter Exp $
* $Id: cy.c,v 1.46 1997/03/23 03:34:44 bde Exp $
*/
#include "cy.h"
@ -71,7 +71,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -1,5 +1,5 @@
/*-
* dgb.c $Id: dgb.c,v 1.23 1997/02/22 09:29:42 peter Exp $
* dgb.c $Id: dgb.c,v 1.24 1997/03/23 03:33:56 bde Exp $
*
* Digiboard driver.
*
@ -45,7 +45,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -43,7 +43,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.97 1997/02/22 09:36:09 peter Exp $
* $Id: fd.c,v 1.98 1997/03/23 03:34:47 bde Exp $
*
*/
@ -60,7 +60,6 @@
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <machine/clock.h>
#include <machine/ioctl_fd.h>
#include <sys/disklabel.h>

View file

@ -40,7 +40,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: mcd.c,v 1.85 1997/02/22 09:36:53 peter Exp $
* $Id: mcd.c,v 1.86 1997/03/23 03:34:51 bde Exp $
*/
static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
@ -55,7 +55,6 @@ static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <sys/ioctl.h>
#include <sys/cdio.h>
#include <sys/errno.h>
#include <sys/dkbad.h>

View file

@ -11,7 +11,7 @@
* this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
* $Id$
* $Id: mse.c,v 1.31 1997/02/22 09:36:56 peter Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@ -52,7 +52,6 @@
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/kernel.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#ifdef DEVFS
#include <sys/devfsext.h>

View file

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_fea.c,v 1.1.1.1 1997/01/17 23:19:49 joerg Exp $
* $Id: if_fea.c,v 1.2 1997/01/17 23:54:37 joerg Exp $
*/
/*
@ -36,7 +36,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#if defined(__bsdi__) || defined(__NetBSD__)

View file

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_fpa.c,v 1.1.1.1 1997/01/17 23:19:49 joerg Exp $
* $Id: if_fpa.c,v 1.2 1997/01/17 23:54:42 joerg Exp $
*
*/
@ -37,7 +37,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#if defined(__bsdi__) || defined(__NetBSD__)

View file

@ -39,7 +39,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -41,7 +41,7 @@
*/
/* $Id$ */
/* $Id: scd.c,v 1.27 1997/02/22 09:37:03 peter Exp $ */
/* Please send any comments to micke@dynas.se */
@ -58,7 +58,6 @@
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <sys/ioctl.h>
#include <sys/cdio.h>
#include <sys/errno.h>
#include <sys/dkbad.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.159 1997/02/22 09:37:09 peter Exp $
* $Id: sio.c,v 1.160 1997/03/23 03:35:04 bde Exp $
*/
#include "opt_comconsole.h"
@ -51,7 +51,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.204 1997/02/28 14:26:34 bde Exp $
* $Id: syscons.c,v 1.205 1997/03/01 23:53:46 jmg Exp $
*/
#include "sc.h"
@ -37,7 +37,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/tty.h>

View file

@ -38,7 +38,7 @@
* from: Utah Hdr: vn.c 1.13 94/04/02
*
* from: @(#)vn.c 8.6 (Berkeley) 4/1/94
* $Id: vn.c,v 1.44 1997/02/22 09:28:58 peter Exp $
* $Id: vn.c,v 1.45 1997/03/23 03:33:39 bde Exp $
*/
/*
@ -76,7 +76,6 @@
#include <sys/errno.h>
#include <sys/buf.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/vnode.h>
#include <sys/fcntl.h>

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
* $Id: cd9660_vfsops.c,v 1.19 1997/02/22 09:38:50 peter Exp $
* $Id: cd9660_vfsops.c,v 1.20 1997/03/23 03:36:11 bde Exp $
*/
#include <sys/param.h>
@ -49,7 +49,6 @@
#include <sys/mount.h>
#include <sys/buf.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/stat.h>

View file

@ -37,7 +37,7 @@
* @(#)procfs_ctl.c 8.4 (Berkeley) 6/15/94
*
* From:
* $Id$
* $Id: procfs_ctl.c,v 1.13 1997/02/22 09:40:27 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/ptrace.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -36,7 +36,7 @@
*
* @(#)procfs_status.c 8.3 (Berkeley) 2/17/94
*
* $Id$
* $Id: procfs_map.c,v 1.10 1997/02/22 09:40:28 peter Exp $
*/
#include <sys/param.h>
@ -45,7 +45,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -37,7 +37,7 @@
* @(#)procfs_status.c 8.4 (Berkeley) 6/15/94
*
* From:
* $Id$
* $Id: procfs_status.c,v 1.8 1997/02/22 09:40:29 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: procfs_type.c,v 1.3 1997/02/22 09:40:30 peter Exp $
*/
#include <sys/param.h>
@ -44,7 +44,6 @@
#include <sys/proc.h>
#include <sys/sysent.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
* $Id$
* $Id: spec_vnops.c,v 1.37 1997/02/22 09:40:34 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/vnode.h>
#include <sys/stat.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/vmmeter.h>

View file

@ -1,4 +1,4 @@
/* $Id$ */
/* $Id: ccd.c,v 1.21 1997/02/22 09:28:56 peter Exp $ */
/* $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $ */
@ -104,7 +104,6 @@
#include <sys/namei.h>
#include <sys/conf.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <ufs/ffs/fs.h>
#include <sys/device.h>

View file

@ -57,7 +57,6 @@
#include <sys/mbuf.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/stat.h>

View file

@ -57,7 +57,6 @@
#include <sys/mbuf.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/stat.h>

View file

@ -1,5 +1,5 @@
/*-
* dgb.c $Id: dgb.c,v 1.23 1997/02/22 09:29:42 peter Exp $
* dgb.c $Id: dgb.c,v 1.24 1997/03/23 03:33:56 bde Exp $
*
* Digiboard driver.
*
@ -45,7 +45,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_fea.c,v 1.1.1.1 1997/01/17 23:19:49 joerg Exp $
* $Id: if_fea.c,v 1.2 1997/01/17 23:54:37 joerg Exp $
*/
/*
@ -36,7 +36,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#if defined(__bsdi__) || defined(__NetBSD__)

View file

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.229 1997/02/24 00:37:43 alex Exp $
* $Id: machdep.c,v 1.230 1997/03/22 18:52:10 kato Exp $
*/
#include "npx.h"
@ -61,7 +61,6 @@
#include <sys/mbuf.h>
#include <sys/mount.h>
#include <sys/msgbuf.h>
#include <sys/ioctl.h>
#include <sys/sysent.h>
#include <sys/tty.h>
#include <sys/sysctl.h>

View file

@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
* $Id: ibcs2_ipc.c,v 1.10 1997/02/22 09:33:19 peter Exp $
*/
#include <sys/param.h>
@ -32,7 +32,6 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/ipc.h>
#include <sys/kernel.h>
#include <sys/malloc.h>

View file

@ -45,7 +45,7 @@
*
* @(#)sun_misc.c 8.1 (Berkeley) 6/18/93
*
* $Id: ibcs2_misc.c,v 1.16 1997/02/22 09:33:22 peter Exp $
* $Id: ibcs2_misc.c,v 1.17 1997/03/23 03:34:07 bde Exp $
*/
/*
@ -61,7 +61,6 @@
#include <sys/fcntl.h>
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
* $Id: ibcs2_signal.c,v 1.9 1997/02/22 09:33:26 peter Exp $
*/
#include <sys/param.h>
@ -33,7 +33,6 @@
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/kernel.h>
#include <sys/signal.h>

View file

@ -28,11 +28,9 @@
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/termios.h>
#include <sys/tty.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/sysproto.h>
#include <net/if.h>
#include <sys/kernel.h>

View file

@ -33,7 +33,6 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/malloc.h>

View file

@ -36,7 +36,6 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/vnode.h>

View file

@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: aha1542.c,v 1.67 1997/03/23 04:39:26 bde Exp $
* $Id: aha1542.c,v 1.68 1997/03/23 06:26:46 bde Exp $
*/
/*
@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>

View file

@ -31,7 +31,7 @@
*/
/*
* $Id: aic6360.c,v 1.27 1997/03/23 04:39:35 bde Exp $
* $Id: aic6360.c,v 1.28 1997/03/23 06:26:47 bde Exp $
*
* Acknowledgements: Many of the algorithms used in this driver are
* inspired by the work of Julian Elischer (julian@tfs.com) and
@ -120,7 +120,6 @@
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>

View file

@ -34,7 +34,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* $Id$
* $Id: asc.c,v 1.24 1997/02/22 09:35:56 peter Exp $
*/
#include "asc.h"
@ -60,7 +60,6 @@
#include <sys/buf.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/ioctl.h>
#ifdef DEVFS
#include <sys/devfsext.h>
#endif /*DEVFS*/

View file

@ -8,7 +8,7 @@
* of this software, nor does the author assume any responsibility
* for damages incurred with its use.
*
* $Id$
* $Id: ctx.c,v 1.23 1997/02/22 09:36:01 peter Exp $
*/
/*
@ -114,7 +114,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/uio.h>
#include <sys/kernel.h>

View file

@ -24,7 +24,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/mbuf.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/conf.h>
#include <sys/proc.h>

View file

@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: cy.c,v 1.45 1997/02/22 09:36:03 peter Exp $
* $Id: cy.c,v 1.46 1997/03/23 03:34:44 bde Exp $
*/
#include "cy.h"
@ -71,7 +71,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -43,7 +43,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.97 1997/02/22 09:36:09 peter Exp $
* $Id: fd.c,v 1.98 1997/03/23 03:34:47 bde Exp $
*
*/
@ -60,7 +60,6 @@
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <machine/clock.h>
#include <machine/ioctl_fd.h>
#include <sys/disklabel.h>

View file

@ -17,7 +17,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*
* ft.c - QIC-40/80 floppy tape driver
* $Id: ft.c,v 1.31 1997/02/22 09:36:12 peter Exp $
* $Id: ft.c,v 1.32 1997/03/24 07:19:55 kato Exp $
*
* 01/19/95 ++sg
* Cleaned up recalibrate/seek code at attach time for FreeBSD 2.x.
@ -73,7 +73,6 @@
#include <sys/disklabel.h> /* temp. for dkunit() in fdc.h */
#include <sys/file.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/uio.h>

View file

@ -27,7 +27,6 @@
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/conf.h>
#include <sys/uio.h>

View file

@ -42,7 +42,6 @@
#include <sys/buf.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/ioctl.h>
#ifdef DEVFS
#include <sys/devfsext.h>
#endif /*DEVFS*/

View file

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: istallion.c,v 1.9 1997/03/13 03:51:25 davidn Exp $
* $Id: istallion.c,v 1.10 1997/03/23 03:34:49 bde Exp $
*/
/*****************************************************************************/
@ -44,7 +44,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -337,7 +337,7 @@ static char MATCDVERSION[]="Version 1(26) 18-Oct-95";
static char MATCDCOPYRIGHT[] = "Matsushita CD-ROM driver, Copr. 1994,1995 Frank Durda IV";
/* The proceeding strings may not be changed*/
/* $Id: matcd.c,v 1.22 1997/02/22 09:38:11 peter Exp $ */
/* $Id: matcd.c,v 1.23 1997/03/23 03:35:32 bde Exp $ */
/*---------------------------------------------------------------------------
Include declarations
@ -352,7 +352,6 @@ static char MATCDCOPYRIGHT[] = "Matsushita CD-ROM driver, Copr. 1994,1995 Frank
#include <sys/cdio.h>
#include <sys/disklabel.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include "i386/isa/matcd/options.h" /*Conditional compile options

View file

@ -40,7 +40,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: mcd.c,v 1.85 1997/02/22 09:36:53 peter Exp $
* $Id: mcd.c,v 1.86 1997/03/23 03:34:51 bde Exp $
*/
static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
@ -55,7 +55,6 @@ static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <sys/ioctl.h>
#include <sys/cdio.h>
#include <sys/errno.h>
#include <sys/dkbad.h>

View file

@ -11,7 +11,7 @@
* this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
* $Id$
* $Id: mse.c,v 1.31 1997/02/22 09:36:56 peter Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@ -52,7 +52,6 @@
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/kernel.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#ifdef DEVFS
#include <sys/devfsext.h>

View file

@ -41,7 +41,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>

View file

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
* $Id$
* $Id: npx.c,v 1.39 1997/02/22 09:36:57 peter Exp $
*/
#include "npx.h"
@ -48,7 +48,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#ifdef NPX_DEBUG
#include <sys/syslog.h>
#endif

View file

@ -72,7 +72,6 @@
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/tty.h>

View file

@ -40,7 +40,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <sys/malloc.h>
#include <sys/errno.h>

View file

@ -39,7 +39,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -41,7 +41,7 @@
*/
/* $Id$ */
/* $Id: scd.c,v 1.27 1997/02/22 09:37:03 peter Exp $ */
/* Please send any comments to micke@dynas.se */
@ -58,7 +58,6 @@
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <sys/ioctl.h>
#include <sys/cdio.h>
#include <sys/errno.h>
#include <sys/dkbad.h>

View file

@ -60,7 +60,7 @@
* that category, with the possible exception of scanners and
* some of the older MO drives.
*
* $Id: seagate.c,v 1.20 1997/02/22 09:37:05 peter Exp $
* $Id: seagate.c,v 1.21 1997/03/23 04:39:51 bde Exp $
*/
/*
@ -117,7 +117,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.159 1997/02/22 09:37:09 peter Exp $
* $Id: sio.c,v 1.160 1997/03/23 03:35:04 bde Exp $
*/
#include "opt_comconsole.h"
@ -51,7 +51,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -55,7 +55,6 @@ error "Can only have 1 spigot configured."
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/file.h>

View file

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: stallion.c,v 1.8 1997/03/23 03:35:06 bde Exp $
* $Id: stallion.c,v 1.9 1997/03/24 07:25:31 davidn Exp $
*/
/*****************************************************************************/
@ -44,7 +44,6 @@
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.204 1997/02/28 14:26:34 bde Exp $
* $Id: syscons.c,v 1.205 1997/03/01 23:53:46 jmg Exp $
*/
#include "sc.h"
@ -37,7 +37,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/tty.h>

View file

@ -134,7 +134,6 @@
#include <sys/conf.h>
#include <sys/buf.h>
#include <sys/kernel.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <sys/syslog.h>
#include <sys/select.h>

View file

@ -22,7 +22,7 @@
* today: Fri Jun 2 17:21:03 EST 1994
* added 24F support ++sg
*
* $Id: ultra14f.c,v 1.52 1997/03/23 04:39:57 bde Exp $
* $Id: ultra14f.c,v 1.53 1997/03/23 06:33:30 bde Exp $
*/
#include <sys/types.h>
@ -33,7 +33,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>

View file

@ -27,7 +27,6 @@
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/cdio.h>
#include <sys/conf.h>

View file

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
* $Id: wd.c,v 1.125 1997/02/22 09:37:25 peter Exp $
* $Id: wd.c,v 1.126 1997/03/11 23:17:04 se Exp $
*/
/* TODO:
@ -72,7 +72,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/diskslice.h>
#include <sys/buf.h>

View file

@ -54,7 +54,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/dkbad.h>

View file

@ -20,7 +20,7 @@
* the original CMU copyright notice.
*
* Version 1.3, Thu Nov 11 12:09:13 MSK 1993
* $Id$
* $Id: wt.c,v 1.38 1997/02/22 09:37:28 peter Exp $
*
*/
@ -66,7 +66,6 @@
#include <sys/buf.h>
#include <sys/fcntl.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/mtio.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
* $Id: linux_file.c,v 1.11 1997/02/22 09:38:20 peter Exp $
*/
#include <sys/param.h>
@ -35,7 +35,6 @@
#include <sys/file.h>
#include <sys/filedesc.h>
#include <sys/proc.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/vnode.h>
#include <sys/malloc.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_misc.c,v 1.24 1997/02/22 09:38:23 peter Exp $
* $Id: linux_misc.c,v 1.25 1997/03/23 03:36:04 bde Exp $
*/
#include <sys/param.h>
@ -38,7 +38,6 @@
#include <sys/dirent.h>
#include <sys/fcntl.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/imgact_aout.h>
#include <sys/mount.h>
#include <sys/namei.h>

View file

@ -27,7 +27,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp
* $Id$
* $Id: linux_util.c,v 1.5 1997/02/22 09:38:29 peter Exp $
*/
#include <sys/param.h>
@ -37,7 +37,6 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/vnode.h>

View file

@ -43,7 +43,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.97 1997/02/22 09:36:09 peter Exp $
* $Id: fd.c,v 1.98 1997/03/23 03:34:47 bde Exp $
*
*/
@ -60,7 +60,6 @@
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <machine/clock.h>
#include <machine/ioctl_fd.h>
#include <sys/disklabel.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.159 1997/02/22 09:37:09 peter Exp $
* $Id: sio.c,v 1.160 1997/03/23 03:35:04 bde Exp $
*/
#include "opt_comconsole.h"
@ -51,7 +51,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>

View file

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.204 1997/02/28 14:26:34 bde Exp $
* $Id: syscons.c,v 1.205 1997/03/01 23:53:46 jmg Exp $
*/
#include "sc.h"
@ -37,7 +37,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/signalvar.h>
#include <sys/tty.h>

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
* $Id: cd9660_vfsops.c,v 1.19 1997/02/22 09:38:50 peter Exp $
* $Id: cd9660_vfsops.c,v 1.20 1997/03/23 03:36:11 bde Exp $
*/
#include <sys/param.h>
@ -49,7 +49,6 @@
#include <sys/mount.h>
#include <sys/buf.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/stat.h>

View file

@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)kern_acct.c 8.1 (Berkeley) 6/14/93
* $Id: kern_acct.c,v 1.13 1997/02/22 09:39:00 peter Exp $
* $Id: kern_acct.c,v 1.14 1997/03/23 03:36:17 bde Exp $
*/
#include <sys/param.h>
@ -55,7 +55,6 @@
#include <sys/errno.h>
#include <sys/acct.h>
#include <sys/resourcevar.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
/*

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_exit.c 8.7 (Berkeley) 2/12/94
* $Id$
* $Id: kern_exit.c,v 1.45 1997/02/22 09:39:04 peter Exp $
*/
#include "opt_ktrace.h"
@ -45,7 +45,6 @@
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/sysent.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/tty.h>
#include <sys/time.h>

View file

@ -30,13 +30,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_lkm.c,v 1.37 1997/02/27 16:40:20 bde Exp $
* $Id: kern_lkm.c,v 1.38 1997/03/23 03:36:20 bde Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/conf.h>
#include <sys/fcntl.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
* $Id$
* $Id: kern_proc.c,v 1.25 1997/02/22 09:39:08 peter Exp $
*/
#include <sys/param.h>
@ -47,7 +47,6 @@
#include <sys/uio.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/signalvar.h>
#include <vm/vm.h>

View file

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: tty_subr.c,v 1.25 1997/02/22 09:39:26 peter Exp $
* $Id: tty_subr.c,v 1.26 1997/03/05 16:45:01 bde Exp $
*/
/*
@ -34,7 +34,6 @@
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/clist.h>
#include <sys/malloc.h>

View file

@ -43,7 +43,7 @@
* from: wd.c,v 1.55 1994/10/22 01:57:12 phk Exp $
* from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
* from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $
* $Id$
* $Id: subr_diskslice.c,v 1.35 1997/02/22 09:39:15 peter Exp $
*/
#include <sys/param.h>
@ -56,7 +56,6 @@
#include <sys/diskslice.h>
#include <sys/dkbad.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/stat.h>
#include <sys/syslog.h>

View file

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: tty_subr.c,v 1.25 1997/02/22 09:39:26 peter Exp $
* $Id: tty_subr.c,v 1.26 1997/03/05 16:45:01 bde Exp $
*/
/*
@ -34,7 +34,6 @@
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/clist.h>
#include <sys/malloc.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tty_tty.c 8.2 (Berkeley) 9/23/93
* $Id: tty_tty.c,v 1.14 1997/02/22 09:39:27 peter Exp $
* $Id: tty_tty.c,v 1.15 1997/03/23 03:36:30 bde Exp $
*/
/*
@ -40,7 +40,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/tty.h>
#include <sys/vnode.h>

View file

@ -37,7 +37,7 @@
* @(#)procfs_ctl.c 8.4 (Berkeley) 6/15/94
*
* From:
* $Id$
* $Id: procfs_ctl.c,v 1.13 1997/02/22 09:40:27 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/ptrace.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -36,7 +36,7 @@
*
* @(#)procfs_status.c 8.3 (Berkeley) 2/17/94
*
* $Id$
* $Id: procfs_map.c,v 1.10 1997/02/22 09:40:28 peter Exp $
*/
#include <sys/param.h>
@ -45,7 +45,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -37,7 +37,7 @@
* @(#)procfs_status.c 8.4 (Berkeley) 6/15/94
*
* From:
* $Id$
* $Id: procfs_status.c,v 1.8 1997/02/22 09:40:29 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: procfs_type.c,v 1.3 1997/02/22 09:40:30 peter Exp $
*/
#include <sys/param.h>
@ -44,7 +44,6 @@
#include <sys/proc.h>
#include <sys/sysent.h>
#include <sys/vnode.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
* $Id$
* $Id: spec_vnops.c,v 1.37 1997/02/22 09:40:34 peter Exp $
*/
#include <sys/param.h>
@ -46,7 +46,6 @@
#include <sys/vnode.h>
#include <sys/stat.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/vmmeter.h>

View file

@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* from: if_ethersubr.c,v 1.5 1994/12/13 22:31:45 wollman Exp
* $Id: if_fddisubr.c,v 1.16 1997/02/22 09:41:01 peter Exp $
* $Id: if_fddisubr.c,v 1.17 1997/03/15 19:58:43 joerg Exp $
*/
#include <sys/param.h>
@ -43,7 +43,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/syslog.h>

View file

@ -70,7 +70,7 @@
* Paul Mackerras (paulus@cs.anu.edu.au).
*/
/* $Id: ppp_tty.c,v 1.13 1997/02/22 09:41:11 peter Exp $ */
/* $Id: ppp_tty.c,v 1.14 1997/03/23 03:37:17 bde Exp $ */
/* from Id: ppp_tty.c,v 1.3 1995/08/16 01:36:40 paulus Exp */
/* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
@ -86,7 +86,6 @@
#include <sys/mbuf.h>
#include <sys/dkstat.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/tty.h>
#include <sys/kernel.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)route.c 8.2 (Berkeley) 11/15/93
* $Id: route.c,v 1.40 1997/02/22 09:41:14 peter Exp $
* $Id: route.c,v 1.41 1997/03/05 08:01:28 julian Exp $
*/
#include "opt_mrouting.h"
@ -46,7 +46,6 @@
#include <sys/socketvar.h>
#include <sys/domain.h>
#include <sys/protosw.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/route.h>

View file

@ -9,7 +9,6 @@
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/mbuf.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/protosw.h>

View file

@ -9,7 +9,6 @@
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/mbuf.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/protosw.h>

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in_pcb.c 8.4 (Berkeley) 5/24/95
* $Id: in_pcb.c,v 1.27 1997/02/22 09:41:29 peter Exp $
* $Id: in_pcb.c,v 1.28 1997/03/03 09:23:33 davidg Exp $
*/
#include <sys/param.h>
@ -42,7 +42,6 @@
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/proc.h>

View file

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_fpa.c,v 1.1.1.1 1997/01/17 23:19:49 joerg Exp $
* $Id: if_fpa.c,v 1.2 1997/01/17 23:54:42 joerg Exp $
*
*/
@ -37,7 +37,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#if defined(__bsdi__) || defined(__NetBSD__)

View file

@ -153,7 +153,6 @@
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/kernel.h>

View file

@ -14,7 +14,7 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*
* $Id: cd.c,v 1.79 1997/03/23 03:37:23 bde Exp $
* $Id: cd.c,v 1.80 1997/03/23 06:33:44 bde Exp $
*/
#include "opt_bounce.h"
@ -29,7 +29,6 @@
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <sys/uio.h>
#include <sys/malloc.h>

View file

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: ch.c,v 1.38 1997/03/23 04:39:12 bde Exp $
* $Id: ch.c,v 1.39 1997/03/24 04:26:46 bde Exp $
*/
#include "opt_scsi.h"
@ -41,7 +41,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/chio.h>

View file

@ -28,7 +28,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $Id: od.c,v 1.28 1997/02/22 09:44:26 peter Exp $
* $Id: od.c,v 1.29 1997/03/23 06:33:45 bde Exp $
*/
/*
@ -68,7 +68,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <sys/uio.h>
#include <sys/malloc.h>

Some files were not shown because too many files have changed in this diff Show more