summaryrefslogtreecommitdiff
path: root/src/unistd/pathconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pathconf.c')
-rw-r--r--src/unistd/pathconf.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/unistd/pathconf.c b/src/unistd/pathconf.c
deleted file mode 100644
index c6bdb2b2..00000000
--- a/src/unistd/pathconf.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <sys/types.h>
-#include <unistd.h>
-
-long pathconf(const char *path, int name)
-{
- (void)path; (void)name;
- return 0;
-}
-/*
-POSIX(1)
-*/
-
-
-#endif