Remove suppression-related options.
[coreutils.git] / lib / fchdir-stub.c
blob9222362113fc5a09d28a1071369484b041a956e4
1 #include <config.h>
2 #include <sys/types.h>
3 #include <errno.h>
5 /* A trivial substitute for `fchdir'.
7 DJGPP 2.03 and earlier don't have `fchdir'. */
9 int
10 fchdir (int fd)
12 errno = ENOSYS;
13 return -1;