/* * fdopendir.c */ #include #include #include DIR *fdopendir(int __fd) { (void)__fd; errno = ENOSYS; return NULL; }