mallocng/aligned_alloc: check for malloc failure
[musl] / src / stat / chmod.c
index cb310fe..d4f53c5 100644 (file)
@@ -1,7 +1,12 @@
 #include <sys/stat.h>
+#include <fcntl.h>
 #include "syscall.h"
 
 int chmod(const char *path, mode_t mode)
 {
-       return syscall2(__NR_chmod, (long)path, mode);
+#ifdef SYS_chmod
+       return syscall(SYS_chmod, path, mode);
+#else
+       return syscall(SYS_fchmodat, AT_FDCWD, path, mode);
+#endif
 }