mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
1812d50bc9
* dirent/Versions: Export fdopendir for GLIBC_2.4. * dirent/Makefile (routines): Add fdopendir. (tests): Add tst-fdopendir. * dirent/tst-fdopendir.c: New file. * include/dirent.h: Declare __alloc_dir. * sysdeps/generic/fdopendir.c: New file. * sysdeps/unix/fdopendir.c: New file. * sysdeps/unix/opendir.c: Split off back part of opendir into new function __alloc_dir.
48 lines
478 B
Plaintext
48 lines
478 B
Plaintext
libc {
|
|
GLIBC_2.0 {
|
|
# a*
|
|
alphasort;
|
|
|
|
# c*
|
|
closedir;
|
|
|
|
# d*
|
|
dirfd;
|
|
|
|
# g*
|
|
getdirentries;
|
|
|
|
# o*
|
|
opendir;
|
|
|
|
# r*
|
|
readdir; readdir_r; rewinddir;
|
|
|
|
# s*
|
|
scandir; seekdir;
|
|
|
|
# t*
|
|
telldir;
|
|
}
|
|
GLIBC_2.1 {
|
|
# a*
|
|
alphasort64;
|
|
|
|
# r*
|
|
readdir64; readdir64_r;
|
|
|
|
# s*
|
|
scandir64;
|
|
|
|
# v*
|
|
versionsort; versionsort64;
|
|
}
|
|
GLIBC_2.2 {
|
|
# g*
|
|
getdirentries64;
|
|
}
|
|
GLIBC_2.4 {
|
|
fdopendir;
|
|
}
|
|
}
|