summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/fstatat64.c
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2012-10-11 12:18:54 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-02-20 13:45:13 +0100
commit36b3c53f924f049e32d677e914592389b875d28b (patch)
treea51ebe06b3010f19f1ae3d4d6d1725d1792fe572 /libc/sysdeps/linux/common/fstatat64.c
parent82fd359bcccb162d78c3b7fbd572ac074aee98e9 (diff)
stat64: Use fstatat64 if arch does not have the stat64 syscall
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/fstatat64.c')
-rw-r--r--libc/sysdeps/linux/common/fstatat64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/fstatat64.c b/libc/sysdeps/linux/common/fstatat64.c
index fbf096300..015f57d13 100644
--- a/libc/sysdeps/linux/common/fstatat64.c
+++ b/libc/sysdeps/linux/common/fstatat64.c
@@ -33,6 +33,7 @@ int fstatat64(int fd, const char *file, struct stat64 *buf, int flag)
return INLINE_SYSCALL(fstatat64, 4, fd, file, buf, flag);
# endif
}
+libc_hidden_def(fstatat64)
#else
/* should add emulation with fstat64() and /proc/self/fd/ ... */
#endif