Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git] / com32 / include / dirent.h
blobc4aca4f09a4b39f0d5e885892112d65458e722bc
1 /*
2 * dirent.h
3 */
5 #ifndef _DIRENT_H
6 #define _DIRENT_H
8 #include <klibc/extern.h>
9 #include <klibc/compiler.h>
10 #include <stddef.h>
11 #include <sys/types.h>
13 #include <sys/dirent.h>
15 __extern DIR *opendir(const char *);
16 __extern struct dirent *readdir(DIR *);
17 __extern int closedir(DIR *);
18 __extern DIR *fdopendir(int);
20 #endif /* Not _DIRENT_H */