summaryrefslogtreecommitdiff
path: root/src/ftw/nftw.c
blob: 8966953cdf62f2025b010b8b723255cf97de8272 (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 0;
}

/*
XOPEN(400)
*/