diff options
Diffstat (limited to 'src/unistd/fchownat.c')
-rw-r--r-- | src/unistd/fchownat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/fchownat.c b/src/unistd/fchownat.c new file mode 100644 index 00000000..70626428 --- /dev/null +++ b/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 syscall5(__NR_fchownat, fd, (long)path, uid, gid, flag); +} |