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