Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #include <unistd.h> | 1 #include <unistd.h> |
| 2 #include "syscall.h" | 2 #include "syscall.h" |
| 3 | 3 |
| 4 int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag) | 4 int fchownat(int fd, const char* path, uid_t uid, gid_t gid, int flag) { |
| 5 { | 5 return syscall(SYS_fchownat, fd, path, uid, gid, flag); |
| 6 » return syscall(SYS_fchownat, fd, path, uid, gid, flag); | |
| 7 } | 6 } |
| OLD | NEW |