From 82cab378652c1d1601545a80b7241090c55b1e37 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Wed, 10 Oct 2012 13:41:18 +0100 Subject: chmod: Use fchmodat if arch does not have the chmod syscall Signed-off-by: Markos Chandras Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/fchmodat.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/sysdeps/linux/common/fchmodat.c') diff --git a/libc/sysdeps/linux/common/fchmodat.c b/libc/sysdeps/linux/common/fchmodat.c index 8224a528a..1e936e039 100644 --- a/libc/sysdeps/linux/common/fchmodat.c +++ b/libc/sysdeps/linux/common/fchmodat.c @@ -32,6 +32,7 @@ int fchmodat(int fd, const char *file, mode_t mode, int flag) return INLINE_SYSCALL(fchmodat, 3, fd, file, mode); } +libc_hidden_def(fchmodat) #else /* should add emulation with fchmod() and /proc/self/fd/ ... */ #endif -- cgit v1.2.3