mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
a5f4e34a26
1998-08-10 15:49 Ulrich Drepper <drepper@cygnus.com> * include/dirent.h: Protect from double inclusion. 1998-08-09 Mark Kettenis <kettenis@phys.uva.nl> * posix/glob.h: Add LFS support for glob and globfree. * posix/Versions [GLIBC_2.1]: Add glob64 and globfree64. * posix/Makefile (routines): Add glob64. * sysdeps/generic/glob64.c: New file. * sysdeps/unix/sysv/linux/glob64.c: New file. * sysdeps/unix/sysv/linux/alpha/glob64.c: New file. * sysdeps/unix/sysv/linux/sparc/sparc64/glob64.c: New file. * sysdeps/generic/glob.c [_LIBC && glob] (__glob_pattern_p): Elide function. * sysdeps/unix/sysv/linux/alpha/glob.c: Add glob64 as a weak alias for __new_glob. Likewise for globfree64. * sysdeps/unix/sysv/linux/sparc/sparc64/glob.c: New file. 1998-08-09 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/Makefile ($(common-objpfx)s-proto.d): Remove -include flag from command.
14 lines
514 B
C
14 lines
514 B
C
#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
|