summaryrefslogtreecommitdiff
path: root/include/dirent.h
blob: 58d7546c4a82e8a1063e20d28505c99d40b4422c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _DIRENT_H
# 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));
#endif