summaryrefslogtreecommitdiff
path: root/src/ftw/nftw.c
blob: 7dd80dd6d52dcfe42a6b9a9aea6f7368076e84be (plain)
1
2
3
4
5
6
7
8
9
10
#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)
*/