OLD | NEW |
1 #include <sys/stat.h> | 1 #include <sys/stat.h> |
2 #include <fcntl.h> | 2 #include <fcntl.h> |
3 #include "syscall.h" | 3 #include "syscall.h" |
4 | 4 |
5 int chmod(const char *path, mode_t mode) | 5 int chmod(const char* path, mode_t mode) { |
6 { | |
7 #ifdef SYS_chmod | 6 #ifdef SYS_chmod |
8 » return syscall(SYS_chmod, path, mode); | 7 return syscall(SYS_chmod, path, mode); |
9 #else | 8 #else |
10 » return syscall(SYS_fchmodat, AT_FDCWD, path, mode); | 9 return syscall(SYS_fchmodat, AT_FDCWD, path, mode); |
11 #endif | 10 #endif |
12 } | 11 } |
OLD | NEW |