summaryrefslogtreecommitdiff
path: root/CMake/posixScandir.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'CMake/posixScandir.cxx')
-rw-r--r--CMake/posixScandir.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/CMake/posixScandir.cxx b/CMake/posixScandir.cxx
deleted file mode 100644
index 8b91428b5..000000000
--- a/CMake/posixScandir.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-#include <dirent.h>
-
-int func (const char *d, dirent ***list, void *sort) {
- int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
- return n;
-}
-
-int main() {
- return 0;
-}