/* * chdir.c */ #include #include #include int chdir(const char *path) { errno = ENOSYS; return -1; }