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