aboutsummaryrefslogtreecommitdiff
path: root/sys/src/chmod.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-11-18 16:40:51 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-11-18 16:40:51 -0800
commit5bcc08d92ae9345d6863f555a3dd9ec960e0860f (patch)
treec0fc5dba61ee770d5757ffb9702d61d277d122a1 /sys/src/chmod.c
parent4bf477d5ed372fd44697d2f0df245b61b4f3f7b3 (diff)
feat: filling out system layer's interface
Diffstat (limited to 'sys/src/chmod.c')
-rw-r--r--sys/src/chmod.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/src/chmod.c b/sys/src/chmod.c
new file mode 100644
index 0000000..a37a037
--- /dev/null
+++ b/sys/src/chmod.c
@@ -0,0 +1,8 @@
+#include "internal.h"
+
+int
+sys·chmod(char *path, uint mode)
+{
+ long ret = syscall(·Chmod, path, mode);
+ return error(ret);
+}