aboutsummaryrefslogtreecommitdiff
path: root/sys/src/chmod.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-11-19 05:44:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-11-19 05:44:21 -0800
commit59d87ccc99f431da06a0ffab0d3e702d9ef82f48 (patch)
treee13de4f7e86cc731add3b3d3bcf3b32ce22adefc /sys/src/chmod.c
parent835dea0eb6333a9ef452881ea073bfe59d14096a (diff)
chore: make dependence on static syscalls explicit
Diffstat (limited to 'sys/src/chmod.c')
-rw-r--r--sys/src/chmod.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/src/chmod.c b/sys/src/chmod.c
deleted file mode 100644
index a37a037..0000000
--- a/sys/src/chmod.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include "internal.h"
-
-int
-sys·chmod(char *path, uint mode)
-{
- long ret = syscall(·Chmod, path, mode);
- return error(ret);
-}