summaryrefslogtreecommitdiff
path: root/src/sys/stat/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat/chmod.c')
-rw-r--r--src/sys/stat/chmod.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/sys/stat/chmod.c b/src/sys/stat/chmod.c
deleted file mode 100644
index f1a47730..00000000
--- a/src/sys/stat/chmod.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <sys/types.h>
-#include <sys/stat.h>
-#include "_syscall.h"
-
-int chmod(const char *path, mode_t mode)
-{
- SYSCALL(chmod, int, -1, path, mode, 0, 0, 0, 0);
-}
-/*
-POSIX(1)
-*/