blob: 4966123a23978bcdde3ae281d963b42a0ed47c50 [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);
}