* fchdir-stub.c: Remove file. No longer needed.

This commit is contained in:
Jim Meyering
2007-01-14 17:18:51 +01:00
parent bb4112b407
commit aa5a4fc172
2 changed files with 4 additions and 14 deletions

View 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

View File

@@ -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;
}