1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

io: Implement lchmod using fchmodat [BZ #14578]

This commit is contained in:
Florian Weimer
2020-01-22 18:56:04 +01:00
parent 6c80c6e876
commit 6b89c385d8
5 changed files with 8 additions and 6 deletions

View File

@ -38,3 +38,4 @@ fchmodat (int fd, const char *file, mode_t mode, int flag)
return INLINE_SYSCALL (fchmodat, 3, fd, file, mode);
}
libc_hidden_def (fchmodat)