projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implement futimens and utimensat
[oweals/musl.git]
/
src
/
stat
/
lchmod.c
1
#include <sys/stat.h>
2
#include <fcntl.h>
3
4
int lchmod(const char *path, mode_t mode)
5
{
6
return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
7
}