]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/readdir64.c
Update.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / readdir64.c
1 #define __READDIR __readdir64
2 #define __GETDENTS __getdents64
3 #define DIRENT_TYPE struct dirent64
4
5 #include <sysdeps/unix/readdir.c>
6
7 #include <shlib-compat.h>
8
9 versioned_symbol (libc, __readdir64, readdir64, GLIBC_2_2);
10
11 #if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2)
12 strong_alias (__readdir64, __old_readdir64)
13 compat_symbol (libc, __old_readdir64, readdir64, GLIBC_2_1);
14 #endif