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