diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/dirent.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index 486e7f60f1..4bffb06a39 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -8,8 +8,16 @@ extern struct dirent *__readdir (DIR *__dirp); extern struct dirent64 *__readdir64 (DIR *__dirp); extern int __readdir_r (DIR *__dirp, struct dirent *__entry, struct dirent **__result); +extern int __readdir64_r (DIR *__dirp, struct dirent64 *__entry, + struct dirent64 **__result); +extern int __scandir64 (__const char * __dir, + struct dirent64 *** __namelist, + int (*__selector) (__const struct dirent64 *), + int (*__cmp) (__const void *, __const void *)); extern __ssize_t __getdents (int __fd, char *__buf, size_t __nbytes) internal_function; extern __ssize_t __getdents64 (int __fd, char *__buf, size_t __nbytes) internal_function; +extern int __alphasort64 (const void *a, const void *b); +extern int __versionsort64 (const void *a, const void *b); #endif |