summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/src/stat/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to '05/musl-0.6.0/src/stat/chmod.c')
-rw-r--r--05/musl-0.6.0/src/stat/chmod.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/05/musl-0.6.0/src/stat/chmod.c b/05/musl-0.6.0/src/stat/chmod.c
new file mode 100644
index 0000000..cb310fe
--- /dev/null
+++ b/05/musl-0.6.0/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);
+}