f4f22b2c7f4f271c2402fd5a8ebb250dbc7858e9
[musl] / src / stat / fchmodat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3
4 int fchmodat(int fd, const char *path, mode_t mode, int flag)
5 {
6         return syscall4(__NR_fchmodat, fd, (long)path, mode, flag);
7 }