floating point environment, untested
[oweals/musl.git] / src / stat / fchmodat.c
index f4f22b2c7f4f271c2402fd5a8ebb250dbc7858e9..61d3206553e6770d18ae1b53bda2f071fb5e7768 100644 (file)
@@ -3,5 +3,5 @@
 
 int fchmodat(int fd, const char *path, mode_t mode, int flag)
 {
-       return syscall4(__NR_fchmodat, fd, (long)path, mode, flag);
+       return syscall(SYS_fchmodat, fd, path, mode, flag);
 }