Chromium Code Reviews| Index: fusl/src/unistd/fchownat.c |
| diff --git a/fusl/src/unistd/fchownat.c b/fusl/src/unistd/fchownat.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..62457a3ec0eb794d63043f8dc8be0e32415347b7 |
| --- /dev/null |
| +++ b/fusl/src/unistd/fchownat.c |
| @@ -0,0 +1,7 @@ |
| +#include <unistd.h> |
| +#include "syscall.h" |
| + |
| +int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag) |
| +{ |
| + return syscall(SYS_fchownat, fd, path, uid, gid, flag); |
| +} |