delete unneeded headers
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sat, 5 May 1990 05:34:19 +0000 (21:34 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sat, 5 May 1990 05:34:19 +0000 (21:34 -0800)
SCCS-vsn: sbin/fsdb/fsdb.c 5.7
SCCS-vsn: sbin/clri/clri.c 2.6
SCCS-vsn: sbin/dumpfs/dumpfs.c 5.9
SCCS-vsn: sbin/badsect/badsect.c 5.8
SCCS-vsn: sys/kern/kern_descrip.c 7.11
SCCS-vsn: sys/kern/kern_prot.c 7.10
SCCS-vsn: sys/kern/kern_sig.c 7.14
SCCS-vsn: sys/kern/uipc_usrreq.c 7.17
SCCS-vsn: sys/ufs/ffs/ffs_alloc.c 7.18
SCCS-vsn: sys/ufs/lfs/lfs_alloc.c 7.18

usr/src/sbin/badsect/badsect.c
usr/src/sbin/clri/clri.c
usr/src/sbin/dumpfs/dumpfs.c
usr/src/sbin/fsdb/fsdb.c
usr/src/sys/kern/kern_descrip.c
usr/src/sys/kern/kern_prot.c
usr/src/sys/kern/kern_sig.c
usr/src/sys/kern/uipc_usrreq.c
usr/src/sys/ufs/ffs/ffs_alloc.c
usr/src/sys/ufs/lfs/lfs_alloc.c

index e58dd73..882b661 100644 (file)
@@ -22,7 +22,7 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)badsect.c  5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)badsect.c  5.8 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -38,10 +38,8 @@ static char sccsid[] = "@(#)badsect.c        5.7 (Berkeley) %G%";
 #include <sys/param.h>
 #include <sys/dir.h>
 #include <sys/stat.h>
 #include <sys/param.h>
 #include <sys/dir.h>
 #include <sys/stat.h>
-#include <sys/time.h>
-#include <sys/vnode.h>
 #include <ufs/fs.h>
 #include <ufs/fs.h>
-#include <ufs/inode.h>
+#include <ufs/dinode.h>
 #include <stdio.h>
 #include <paths.h>
 
 #include <stdio.h>
 #include <paths.h>
 
index 004a030..2aee966 100644 (file)
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#)clri.c 2.5 %G%";
+static char sccsid[] = "@(#)clri.c 2.6 %G%";
 
 /* static char *sccsid = "@(#)clri.c   4.1 (Berkeley) 10/1/80"; */
 
 
 /* static char *sccsid = "@(#)clri.c   4.1 (Berkeley) 10/1/80"; */
 
@@ -7,9 +7,7 @@ static char sccsid[] = "@(#)clri.c 2.5 %G%";
  */
 
 #include <sys/param.h>
  */
 
 #include <sys/param.h>
-#include <sys/time.h>
-#include <sys/vnode.h>
-#include <ufs/inode.h>
+#include <ufs/dinode.h>
 #include <ufs/fs.h>
 
 #define ISIZE  (sizeof(struct dinode))
 #include <ufs/fs.h>
 
 #define ISIZE  (sizeof(struct dinode))
index a5f03cc..bbb0e72 100644 (file)
@@ -22,13 +22,11 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)dumpfs.c   5.8 (Berkeley) %G%";
+static char sccsid[] = "@(#)dumpfs.c   5.9 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
-#include <sys/time.h>
-#include <sys/vnode.h>
-#include <ufs/inode.h>
+#include <ufs/dinode.h>
 #include <ufs/fs.h>
 
 #include <stdio.h>
 #include <ufs/fs.h>
 
 #include <stdio.h>
index 120486c..f4cb0df 100644 (file)
@@ -25,7 +25,7 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)fsdb.c     5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)fsdb.c     5.7 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -43,10 +43,8 @@ static char sccsid[] = "@(#)fsdb.c   5.6 (Berkeley) %G%";
 #include <sys/signal.h>
 #include <sys/file.h>
 #include <sys/dir.h>
 #include <sys/signal.h>
 #include <sys/file.h>
 #include <sys/dir.h>
-#include <sys/time.h>
-#include <sys/vnode.h>
 #include <ufs/fs.h>
 #include <ufs/fs.h>
-#include <ufs/inode.h>
+#include <ufs/dinode.h>
 #include <stdio.h>
 #include <setjmp.h>
 #include <paths.h>
 #include <stdio.h>
 #include <setjmp.h>
 #include <paths.h>
index 94606d6..a33fd9a 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)kern_descrip.c      7.10 (Berkeley) %G%
+ *     @(#)kern_descrip.c      7.11 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -26,7 +26,6 @@
 #include "file.h"
 #include "socket.h"
 #include "socketvar.h"
 #include "file.h"
 #include "socket.h"
 #include "socketvar.h"
-#include "mount.h"
 #include "stat.h"
 
 #include "ioctl.h"
 #include "stat.h"
 
 #include "ioctl.h"
index 3ad59ab..dbc3d08 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)kern_prot.c 7.9 (Berkeley) %G%
+ *     @(#)kern_prot.c 7.10 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -29,7 +29,6 @@
 #include "timeb.h"
 #include "times.h"
 #include "reboot.h"
 #include "timeb.h"
 #include "times.h"
 #include "reboot.h"
-#include "mount.h"
 #include "buf.h"
 #include "../ufs/quota.h"
 #include "malloc.h"
 #include "buf.h"
 #include "../ufs/quota.h"
 #include "malloc.h"
index b24d5ed..12a9c41 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)kern_sig.c  7.13 (Berkeley) %G%
+ *     @(#)kern_sig.c  7.14 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -25,7 +25,6 @@
 #include "timeb.h"
 #include "times.h"
 #include "buf.h"
 #include "timeb.h"
 #include "times.h"
 #include "buf.h"
-#include "mount.h"
 #include "text.h"
 #include "seg.h"
 #include "vm.h"
 #include "text.h"
 #include "seg.h"
 #include "vm.h"
index b8a316c..b0855b3 100644 (file)
@@ -12,7 +12,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)uipc_usrreq.c       7.16 (Berkeley) %G%
+ *     @(#)uipc_usrreq.c       7.17 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
 #include "unpcb.h"
 #include "un.h"
 #include "vnode.h"
 #include "unpcb.h"
 #include "un.h"
 #include "vnode.h"
-#include "mount.h"
 #include "file.h"
 #include "stat.h"
 #include "file.h"
 #include "stat.h"
-#include "mbuf.h"      /* XXX must appear after mount.h */
+#include "mbuf.h"
 
 /*
  * Unix communications domain.
 
 /*
  * Unix communications domain.
index 35657be..4676fe5 100644 (file)
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)ffs_alloc.c 7.17 (Berkeley) %G%
+ *     @(#)ffs_alloc.c 7.18 (Berkeley) %G%
  */
 
 #include "param.h"
 #include "systm.h"
  */
 
 #include "param.h"
 #include "systm.h"
-#include "mount.h"
 #include "buf.h"
 #include "user.h"
 #include "vnode.h"
 #include "buf.h"
 #include "user.h"
 #include "vnode.h"
index 71e3f00..3d230a7 100644 (file)
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)lfs_alloc.c 7.17 (Berkeley) %G%
+ *     @(#)lfs_alloc.c 7.18 (Berkeley) %G%
  */
 
 #include "param.h"
 #include "systm.h"
  */
 
 #include "param.h"
 #include "systm.h"
-#include "mount.h"
 #include "buf.h"
 #include "user.h"
 #include "vnode.h"
 #include "buf.h"
 #include "user.h"
 #include "vnode.h"