mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-08 17:13:32 +08:00
15 lines
208 B
C
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;
|
||
|
}
|