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
+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
#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"
#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
+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
#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>