1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#if 0 #include <ftw.h> #include <sys/stat.h> #include "_ftw.h" int ftw(const char * path, int (*fn) (const char *, const struct stat * ptr, int flag), int ndirs) { return __ftw(path, fn, ndirs, __FTW_OLD); } /* XOPEN(4) */ #endif