github.com/afumu/libc@v0.0.6/musl/src/stat/lchmod.c (about)

     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  }