lchmod.c 169 B

12345678
  1. #define _GNU_SOURCE
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. int lchmod(const char *path, mode_t mode)
  5. {
  6. return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
  7. }