File: ftw.c

package info (click to toggle)
glibc 2.41-8
  • links: PTS, VCS
  • area: main
  • in suites: experimental, trixie
  • size: 299,920 kB
  • sloc: ansic: 1,050,402; asm: 238,842; makefile: 20,355; python: 13,537; sh: 11,812; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (16 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (42)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define ftw64 __rename_ftw64
#define nftw64 __rename_nftw64

#include "../../io/ftw.c"

#undef ftw64
#undef nftw64

weak_alias (ftw, ftw64)
strong_alias (__new_nftw, __new_nftw64)
versioned_symbol (libc, __new_nftw64, nftw64, GLIBC_2_3_3);

#if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_3_3)
strong_alias (__old_nftw, __old_nftw64)
compat_symbol (libc, __old_nftw64, nftw64, GLIBC_2_1);
#endif