dns response handling: ignore presence of wrong-type RRs
[musl] / src / stat / lchmod.c
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 }