fix stale locks left behind when pthread_create fails
[musl] / 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 }