* fchdir-stub.c: Remove file. No longer needed.
authorJim Meyering <jim@meyering.net>
Sun, 14 Jan 2007 16:18:51 +0000 (17:18 +0100)
committerJim Meyering <jim@meyering.net>
Sun, 14 Jan 2007 16:18:51 +0000 (17:18 +0100)
lib/ChangeLog
lib/fchdir-stub.c [deleted file]

index 99ede8d..a7066cc 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-14  Jim Meyering  <jim@meyering.net>
+
+       * fchdir-stub.c: Remove file.  No longer needed.
+
 2006-12-03  Jim Meyering  <jim@meyering.net>
 
        * Makefile.am (libcoreutils_a_SOURCES): Remove xmemcoll.c and
diff --git a/lib/fchdir-stub.c b/lib/fchdir-stub.c
deleted file mode 100644 (file)
index 9222362..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <config.h>
-#include <sys/types.h>
-#include <errno.h>
-
-/* A trivial substitute for `fchdir'.
-
-   DJGPP 2.03 and earlier don't have `fchdir'. */
-
-int
-fchdir (int fd)
-{
-  errno = ENOSYS;
-  return -1;
-}