| 1 | #ifndef _FTW_H |
| 2 | #include <io/ftw.h> |
| 3 | |
| 4 | #ifndef _ISOMAC |
| 5 | # if __TIMESIZE != 64 |
| 6 | # include <sys/stat.h> |
| 7 | |
| 8 | typedef int (*__ftw64_time64_func_t) (const char *, |
| 9 | const struct __stat64_t64 *, int); |
| 10 | typedef int (*__nftw64_time64_func_t) (const char *, |
| 11 | const struct __stat64_t64 *, int, |
| 12 | struct FTW *); |
| 13 | |
| 14 | extern int __ftw64_time64 (const char *, __ftw64_time64_func_t, int); |
| 15 | extern int __nftw64_time64 (const char *, __nftw64_time64_func_t, int, int); |
| 16 | # endif |
| 17 | #endif |
| 18 | |
| 19 | #endif /* _FTW_H */ |
| 20 | |