summaryrefslogtreecommitdiff
path: root/lib/libc/stat/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stat/chmod.c')
-rw-r--r--lib/libc/stat/chmod.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/stat/chmod.c b/lib/libc/stat/chmod.c
new file mode 100644
index 00000000..6b7283e2
--- /dev/null
+++ b/lib/libc/stat/chmod.c
@@ -0,0 +1,7 @@
+#include <sys/stat.h>
+#include <syscall.h>
+
+int chmod(const char *path, mode_t mode)
+{
+ return syscall(chmod, path, mode);
+}