summaryrefslogtreecommitdiff
path: root/src/unistd/lchown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/lchown.c')
-rw-r--r--src/unistd/lchown.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/unistd/lchown.c b/src/unistd/lchown.c
new file mode 100644
index 00000000..e59adc9a
--- /dev/null
+++ b/src/unistd/lchown.c
@@ -0,0 +1,11 @@
+#include <unistd.h>
+
+int lchown(const char *path, uid_t owner, gid_t group)
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+POSIX(200809)
+*/