iconv: add aliases for GBK
[musl.git] / src / stat / lchmod.c
blobf324ba798334e8168a14e8b781fd4c15accd6076
1 #define _GNU_SOURCE
2 #include <sys/stat.h>
3 #include <fcntl.h>
5 int lchmod(const char *path, mode_t mode)
7 return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);