mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-15 20:02:10 +02: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;
|
|
}
|