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