diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-15 10:09:18 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-15 10:09:18 -0700 |
commit | 67cc348d55b886eac7c3b3b028d22ec8e8c349a4 (patch) | |
tree | c12d28b302ec8abd71a70d38e35655b4273597a7 /include | |
parent | a3f95dcc57e5d2e8fb2ec4675475172f75e739ce (diff) | |
download | glibc-67cc348d55b886eac7c3b3b028d22ec8e8c349a4.tar.gz glibc-67cc348d55b886eac7c3b3b028d22ec8e8c349a4.tar.xz glibc-67cc348d55b886eac7c3b3b028d22ec8e8c349a4.zip |
Declare __getdirentries in internal dirent.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/dirent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index 8e4823ce73..096a9771a1 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -30,6 +30,10 @@ extern int __scandir64 (const char * __dir, int (*__selector) (const struct dirent64 *), int (*__cmp) (const struct dirent64 **, const struct dirent64 **)); +extern __ssize_t __getdirentries (int __fd, char *__restrict __buf, + size_t __nbytes, + __off_t *__restrict __basep) + __THROW __nonnull ((2, 4)); extern __ssize_t __getdents (int __fd, char *__buf, size_t __nbytes) internal_function; extern __ssize_t __getdents64 (int __fd, char *__buf, size_t __nbytes) |