chiark / gitweb /
[PATCH] volume-id build fix and update
[elogind.git] / klibc / klibc / include / dirent.h
1 /*
2  * dirent.h
3  */
4
5 #ifndef _DIRENT_H
6 #define _DIRENT_H
7
8 #include <klibc/extern.h>
9 #include <sys/dirent.h>
10
11 #ifndef __IO_DIR_DEFINED
12 struct _IO_dir;
13 #endif
14 typedef struct _IO_dir DIR;
15
16 __extern DIR *opendir(const char *);
17 __extern struct dirent *readdir(DIR *);
18 __extern int closedir(DIR *);
19
20 #endif /* _DIRENT_H */