about summary refs log tree commit diff
path: root/include/dirent.h
blob: f6a3ed8741df333464f4473e760f20612327d52c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 __getdents __P ((int __fd, char *__buf, size_t __nbytes))
     internal_function;
extern __ssize_t __getdents64 __P ((int __fd, char *__buf, size_t __nbytes))
     internal_function;
#endif