diff --git a/lib/ChangeLog b/lib/ChangeLog index 99ede8dbf..a7066ccbc 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2007-01-14 Jim Meyering + + * fchdir-stub.c: Remove file. No longer needed. + 2006-12-03 Jim Meyering * 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 index 922236211..000000000 --- a/lib/fchdir-stub.c +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include -#include - -/* A trivial substitute for `fchdir'. - - DJGPP 2.03 and earlier don't have `fchdir'. */ - -int -fchdir (int fd) -{ - errno = ENOSYS; - return -1; -}