no longer need to include time.h, vnode.h, and inode.h; just include dinode.h
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 25 Oct 1989 11:05:48 +0000 (03:05 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 25 Oct 1989 11:05:48 +0000 (03:05 -0800)
SCCS-vsn: sbin/fsck/pass4.c 5.5
SCCS-vsn: sbin/fsck/main.c 5.15
SCCS-vsn: sbin/fsck/utilities.c 5.18
SCCS-vsn: sbin/fsck/setup.c 5.23
SCCS-vsn: sbin/fsck/pass1.c 5.7
SCCS-vsn: sbin/fsck/dir.c 5.8
SCCS-vsn: sbin/fsck/inode.c 5.9
SCCS-vsn: sbin/fsck/pass1b.c 5.4
SCCS-vsn: sbin/fsck/pass5.c 5.8
SCCS-vsn: sbin/fsck/pass3.c 5.4
SCCS-vsn: sbin/fsck/pass2.c 5.6

usr/src/sbin/fsck/dir.c
usr/src/sbin/fsck/inode.c
usr/src/sbin/fsck/main.c
usr/src/sbin/fsck/pass1.c
usr/src/sbin/fsck/pass1b.c
usr/src/sbin/fsck/pass2.c
usr/src/sbin/fsck/pass3.c
usr/src/sbin/fsck/pass4.c
usr/src/sbin/fsck/pass5.c
usr/src/sbin/fsck/setup.c
usr/src/sbin/fsck/utilities.c

index 012dcfc..1251a94 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)dir.c      5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)dir.c      5.8 (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>
 #define KERNEL
 #include <ufs/dir.h>
 #include <ufs/fs.h>
 #define KERNEL
 #include <ufs/dir.h>
index 31400ee..226144f 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)inode.c    5.8 (Berkeley) %G%";
+static char sccsid[] = "@(#)inode.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 <ufs/dir.h>
 #include <pwd.h>
 #include <ufs/fs.h>
 #include <ufs/dir.h>
 #include <pwd.h>
index 1cd7ff8..daf0c06 100644 (file)
@@ -11,13 +11,11 @@ char copyright[] =
 #endif not lint
 
 #ifndef lint
 #endif not lint
 
 #ifndef lint
-static char sccsid[] = "@(#)main.c     5.14 (Berkeley) %G%";
+static char sccsid[] = "@(#)main.c     5.15 (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 <sys/stat.h>
 #include <sys/wait.h>
 #include <ufs/fs.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
index 5cffdee..3674958 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass1.c    5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass1.c    5.7 (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 "fsck.h"
 
 #include <ufs/fs.h>
 #include "fsck.h"
 
index ad51736..b714182 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass1b.c   5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass1b.c   5.4 (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 "fsck.h"
 
 #include <ufs/fs.h>
 #include "fsck.h"
 
index e1bed16..0bd6bb1 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass2.c    5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass2.c    5.6 (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 <ufs/dir.h>
 #include <strings.h>
 #include <ufs/fs.h>
 #include <ufs/dir.h>
 #include <strings.h>
index 61b2c5b..ee698e3 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass3.c    5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass3.c    5.4 (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 "fsck.h"
 
 #include <ufs/fs.h>
 #include "fsck.h"
 
index 93b83f5..37b4dc7 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass4.c    5.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass4.c    5.5 (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 "fsck.h"
 
 #include <ufs/fs.h>
 #include "fsck.h"
 
index c8b888f..07c5da7 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pass5.c    5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)pass5.c    5.8 (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 "fsck.h"
 
 #include <ufs/fs.h>
 #include "fsck.h"
 
index d92bc8a..153664d 100644 (file)
@@ -5,14 +5,12 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)setup.c    5.22 (Berkeley) %G%";
+static char sccsid[] = "@(#)setup.c    5.23 (Berkeley) %G%";
 #endif not lint
 
 #define DKTYPENAMES
 #include <sys/param.h>
 #endif not lint
 
 #define DKTYPENAMES
 #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 <sys/stat.h>
 #include <sys/ioctl.h>
 #include <ufs/fs.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
index c68dac4..ba048bf 100644 (file)
@@ -5,13 +5,11 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)utilities.c        5.17 (Berkeley) %G%";
+static char sccsid[] = "@(#)utilities.c        5.18 (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 <ufs/dir.h>
 #include <stdio.h>
 #include <ufs/fs.h>
 #include <ufs/dir.h>
 #include <stdio.h>