diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-01-22 18:56:04 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-02-12 08:43:59 +0100 |
commit | 6b89c385d8bd0700b25bac2c2d0bebe68d5cc05d (patch) | |
tree | 9daf6ad81d41930593a0ed2a3c027d52a9bcf05d /include/sys | |
parent | 6c80c6e8767b860a5e18e136d04a80be2a8dce15 (diff) | |
download | glibc-6b89c385d8bd0700b25bac2c2d0bebe68d5cc05d.zip glibc-6b89c385d8bd0700b25bac2c2d0bebe68d5cc05d.tar.gz glibc-6b89c385d8bd0700b25bac2c2d0bebe68d5cc05d.tar.bz2 |
io: Implement lchmod using fchmodat [BZ #14578]
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/stat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index b82d452..92284ca 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -9,6 +9,7 @@ extern int __lstat (const char *__file, struct stat *__buf); extern int __chmod (const char *__file, __mode_t __mode); libc_hidden_proto (__chmod) extern int __fchmod (int __fd, __mode_t __mode); +libc_hidden_proto (fchmodat) extern __mode_t __umask (__mode_t __mask); extern int __mkdir (const char *__path, __mode_t __mode); libc_hidden_proto (__mkdir) |