mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-03 23:13:50 +08:00
82fb517834
From Rich Dawe.
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;
|
|
}
|