math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / unistd / fchownat.c
1 #include <unistd.h>
2 #include "syscall.h"
3
4 int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag)
5 {
6         return syscall(SYS_fchownat, fd, path, uid, gid, flag);
7 }