1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#if 0 #include <ftw.h> int nftw(const char * path, int (*fn) (const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags) { return __ftw(path, fn, fd_limit, flags); } /* XOPEN(400) */ #endif