diff options
Diffstat (limited to 'include/dirent.h')
-rw-r--r-- | include/dirent.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index f59a6b778b..594d90d89f 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -1 +1,11 @@ #include <dirent/dirent.h> + +/* Now define the internal interfaces. */ +extern DIR *__opendir __P ((__const char *__name)); +extern int __closedir __P ((DIR *__dirp)); +extern struct dirent *__readdir __P ((DIR *__dirp)); +extern struct dirent64 *__readdir64 __P ((DIR *__dirp)); +extern int __readdir_r __P ((DIR *__dirp, struct dirent *__entry, + struct dirent **__result)); +extern __ssize_t __getdirentries __P ((int __fd, char *__buf, + size_t __nbytes, __off_t *__basep)); |