summaryrefslogtreecommitdiff
path: root/src/unistd/lockf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/lockf.c')
-rw-r--r--src/unistd/lockf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unistd/lockf.c b/src/unistd/lockf.c
new file mode 100644
index 00000000..8da34e18
--- /dev/null
+++ b/src/unistd/lockf.c
@@ -0,0 +1,10 @@
+#include <unistd.h>
+
+int lockf(int fildes, int function, off_t size)
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+*/