1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 #include <sys/stat.h>
4 
lchmod(const char * path,mode_t mode)5 int lchmod(const char* path, mode_t mode) {
6     return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
7 }
8