blob: 6a0386f57df43a4f172cdea8bb3420b071982879 [file] [log] [blame]
#define _GNU_SOURCE
#include <fcntl.h>
#include <sys/stat.h>
int lchmod(const char* path, mode_t mode) {
return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
}