Learn more about these different git repos.
Other Git URLs
#include <sys/stat.h> #include <fcntl.h> #include "syscall.h" int fchmodat(int fd, const char *path, mode_t mode, int flag) { return syscall(SYS_fchmodat, fd, path, mode, flag); }