toaruos/libc/unistd/chmod.c

12 lines
232 B
C

#include <errno.h>
#include <syscall.h>
#include <syscall_nums.h>
#include <sys/stat.h>
DEFN_SYSCALL2(chmod, SYS_CHMOD, char *, int);
int chmod(const char *path, mode_t mode) {
__sets_errno(syscall_chmod((char *)path, mode));
}