floating point environment, untested
[oweals/musl.git] / src / stat / fchmod.c
index 91897383f74ba25d2fd7e63591a20e58276e5b36..f9b99366e4790b01b1f94f460e657fc9439cd9cc 100644 (file)
@@ -3,5 +3,5 @@
 
 int fchmod(int fd, mode_t mode)
 {
-       return syscall2(__NR_fchmod, fd, mode);
+       return syscall(SYS_fchmod, fd, mode);
 }