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