summaryrefslogtreecommitdiff
path: root/src/unistd/fpathconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/fpathconf.c')
-rw-r--r--src/unistd/fpathconf.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/fpathconf.c b/src/unistd/fpathconf.c
new file mode 100644
index 00000000..37fcf41a
--- /dev/null
+++ b/src/unistd/fpathconf.c
@@ -0,0 +1,12 @@
+#include "stddef.h"
+#include "sys/types.h"
+#include <unistd.h>
+
+long fpathconf(int fildes, int name)
+{
+ (void)fildes; (void)name;
+ return 0;
+}
+/*
+POSIX(1)
+*/