Whamcloud - gitweb
ChangeLog, bmove.c, llseek.c:
authorTheodore Ts'o <tytso@mit.edu>
Thu, 4 Sep 1997 00:43:10 +0000 (00:43 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 4 Sep 1997 00:43:10 +0000 (00:43 +0000)
  llseek.c: Added missing semicolon to glibc fixup declaration of
   llseek().
  bmove.c: Add #include of errno.h
ChangeLog, resize2fs.h:
  Add #include for errno.h

lib/ext2fs/ChangeLog
lib/ext2fs/bmove.c
lib/ext2fs/llseek.c
resize/ChangeLog
resize/resize2fs.h

index e19ae74..62ad4ad 100644 (file)
@@ -1,3 +1,10 @@
+Wed Sep  3 14:27:30 1997  Theodore Y. Ts'o  <tytso@edt.mit.edu>
+
+       * llseek.c: Added missing semicolon to glibc fixup declaration of
+       llseek().
+
+       * bmove.c: Add #include of errno.h
+
 Sat Aug 23 22:47:46 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * Makefile.in (ELF_SO_VERSION): Bump version to be 2.4 since we've
index 6bcd74d..d246aa4 100644 (file)
@@ -14,6 +14,9 @@
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/time.h>
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 
 #include <linux/ext2_fs.h>
 #include "ext2fs/ext2fs.h"
index cd47b2d..7afd002 100644 (file)
@@ -31,7 +31,7 @@
 #include <syscall.h>
 
 #if (__GLIBC__ == 2)
-ext2_loff_t llseek (int fd, ext2_loff_t offset, int origin)
+ext2_loff_t llseek (int fd, ext2_loff_t offset, int origin);
 #endif
 
 #define my_llseek llseek
index e22bc40..d6ea11c 100644 (file)
@@ -1,3 +1,7 @@
+Wed Sep  3 17:31:49 1997  Theodore Y. Ts'o  <tytso@edt.mit.edu>
+
+       * resize2fs.h: Add #include for errno.h
+
 Tue Jun 17 01:33:20 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * Release of E2fsprogs 1.11
index 7d68997..daecb0f 100644 (file)
@@ -14,6 +14,9 @@
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/time.h>
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 
 #ifdef HAVE_LINUX_FS_H
 #include <linux/fs.h>