summaryrefslogtreecommitdiff
path: root/src/ftw/ftw.c
blob: 7e3bff57b51cccbc8f00cbca54659584ac28616d (plain)
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