Whamcloud - gitweb
ChangeLog, getsize.c, ismounted.c, unix_io.c:
authorTheodore Ts'o <tytso@mit.edu>
Fri, 20 Feb 1998 05:33:14 +0000 (05:33 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 20 Feb 1998 05:33:14 +0000 (05:33 +0000)
  getsize.c, ismounted.c, unix_io.c: #include errno.h since it's needed.

lib/ext2fs/ChangeLog
lib/ext2fs/getsize.c
lib/ext2fs/ismounted.c
lib/ext2fs/unix_io.c

index 0478c83..454a00f 100644 (file)
@@ -1,3 +1,8 @@
+1998-02-20  Theodore Y. Ts'o  <tytso@edt.mit.edu>
+
+       * getsize.c, ismounted.c, unix_io.c: #include errno.h since it's
+               needed.
+
 Mon Feb 16 16:16:00 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * ext2_io.h, ext2fs.h: Protect against being included multiple times.
index 296035d..a7c6720 100644 (file)
@@ -13,6 +13,9 @@
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 #include <fcntl.h>
 #ifdef HAVE_LINUX_FS_H
 #include <linux/fs.h>
index f1a6996..a65778e 100644 (file)
@@ -13,6 +13,9 @@
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 #include <fcntl.h>
 #ifdef HAVE_LINUX_FS_H
 #include <linux/fs.h>
index 4639d4f..c46602e 100644 (file)
@@ -16,6 +16,9 @@
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 #include <fcntl.h>
 #include <time.h>
 #if HAVE_SYS_STAT_H