Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stat
lchmod.c
pretty
plain
permalink
blame
history
•
8 lines
•
169 B
1
#define _GNU_SOURCE
2
#include <sys/stat.h>
3
#include <fcntl.h>
4
5
int lchmod(const char *path, mode_t mode)
6
{
7
	return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
8
}