summaryrefslogtreecommitdiff
path: root/src/ftw/ftw.c
blob: 8bac503e0aba55ef973889cfd245ecbd3ad72eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <ftw.h>
#include <sys/stat.h>

int ftw(const char * path, int (*fn) (const char *, const struct stat * ptr, int flag), int ndirs)
{
	return -1;
}

/*
XOPEN(4)
*/