diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2012-10-10 13:41:18 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-20 13:45:10 +0100 |
commit | 82cab378652c1d1601545a80b7241090c55b1e37 (patch) | |
tree | 143e4fc0ab6bd13a76378674ee9bea90e89de471 /include/sys | |
parent | 90accddebef0cf967e67c9d2412082a361d9f2bd (diff) |
chmod: Use fchmodat if arch does not have the chmod syscall
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
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 bff90cb6d..1709cece7 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -309,6 +309,7 @@ extern int fchmod (int __fd, __mode_t __mode) __THROW; extern int fchmodat (int __fd, const char *__file, __mode_t __mode, int __flag) __THROW __nonnull ((2)) __wur; +libc_hidden_proto(fchmodat) #endif /* Use ATFILE. */ |