add and consolidate nasty stdio_ext junk
[oweals/musl.git] / src / unistd / fchown.c
index 6050b77417c2c896f7bab5fe49f69c5a3a79015a..b05f0be41d9dae32dfd6c82ba96c364fd2606eaf 100644 (file)
@@ -3,5 +3,5 @@
 
 int fchown(int fd, uid_t uid, gid_t gid)
 {
-       return syscall3(__NR_fchown, fd, uid, gid);
+       return syscall(SYS_fchown, fd, uid, gid);
 }