gfxboot: parse TIMEOUT keyword
[syslinux.git] / com32 / lib / fdopendir.c
blob5fe116170cb38e50bc122e6cac6bb84082af6cdb
1 /*
2 * fdopendir.c
3 */
5 #include <dirent.h>
6 #include <stdio.h>
7 #include <errno.h>
9 DIR *fdopendir(int __fd)
11 errno = ENOSYS;
12 return NULL;