diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2012-10-10 13:44:07 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-20 13:45:11 +0100 |
commit | 695e274cf7f24c596258827ee202d29ff735d9b9 (patch) | |
tree | e0c02d79f717410f92dee3a5760658c499aeb0e0 /include/unistd.h | |
parent | 82cab378652c1d1601545a80b7241090c55b1e37 (diff) |
access: Use faccessat if arch does not have the access 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/unistd.h')
-rw-r--r-- | include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 81f8e24dc..137b0db0a 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -307,6 +307,7 @@ extern int eaccess (const char *__name, int __type) otherwise use real IDs like `access'. */ extern int faccessat (int __fd, const char *__file, int __type, int __flag) __THROW __nonnull ((2)) __wur; +libc_hidden_proto(faccessat) #endif /* Use GNU. */ |