summaryrefslogtreecommitdiff
path: root/src/ftw/__ftw.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ftw/__ftw.c')
-rw-r--r--src/ftw/__ftw.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ftw/__ftw.c b/src/ftw/__ftw.c
deleted file mode 100644
index 0f9b2f79..00000000
--- a/src/ftw/__ftw.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#if 0
-
-#include "_ftw.h"
-
-int __ftw(const char *path, int (*fn)(), int fd_limit, int flags)
-{
- struct FTW ft;
- struct stat st;
- int type = 0;
-
- int ret = (flags == __FTW_OLD) ? fn(path, &st, type) : fn(path, &st, type, &ft);
-
- return ret;
-}
-
-
-#endif