mirror of https://git.musl-libc.org/git/musl
2 changed files with 10 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||
|
#include <sys/stat.h> |
||||
|
#include <fcntl.h> |
||||
|
|
||||
|
int lchmod(const char *path, mode_t mode) |
||||
|
{ |
||||
|
return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW); |
||||
|
} |
||||
Loading…
Reference in new issue