1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-15 20:02:10 +02:00
Files
coreutils/lib/fchdir-stub.c
Jim Meyering 82fb517834 New file: trivial stub for fchdir.
From Rich Dawe.
2003-03-19 09:00:34 +00:00

15 lines
208 B
C

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