ftw.h 505 B

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