qsort: add a short comment about the algorithm
[oweals/musl.git] / src / stat / chmod.c
index cb310fecd63f38e4035aa25c95bdfb0e464bcbf9..d4f53c564e14701ea360a7159037c39838266d9f 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
 }