super.c: Remove excess #includes which are not necessary.
e2fsck.h: Add #ifdef's for HAVE_SYS_TYPES_H and HAVE_SYS_TIME_H
+Sun Oct 19 21:12:11 1997 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * super.c: Remove excess #includes which are not necessary.
+
+ * e2fsck.h: Add #ifdef's for HAVE_SYS_TYPES_H and HAVE_SYS_TIME_H
+
Fri Oct 3 13:40:03 1997 Theodore Ts'o <tytso@rsts-11.mit.edu>
* pass*.c, super.c: Massive changes to avoid using printf and
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
+#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
+#endif
#ifdef HAVE_LINUX_FS_H
#include <linux/fs.h>
#include <stdlib.h>
#endif
#include <string.h>
-#include <fcntl.h>
-#include <ctype.h>
-#include <termios.h>
#include <time.h>
#ifdef HAVE_GETOPT_H
#include <getopt.h>
#ifdef HAVE_MNTENT_H
#include <mntent.h>
#endif
-#include <sys/ioctl.h>
-#include <malloc.h>
#include "uuid/uuid.h"
#include "e2fsck.h"