about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-04-29 14:43:41 -0700
committerRoland McGrath <roland@hack.frob.com>2015-04-29 14:43:41 -0700
commit3600cf1e524b2aad379fa5dc76d5e124b23fc9fa (patch)
tree5180d87b158a6f9485f50d4b02427b35b3511342 /sysdeps
parent314647f75ddfc94e600498a65ea8c7a05e9c20c0 (diff)
downloadglibc-3600cf1e524b2aad379fa5dc76d5e124b23fc9fa.tar.gz
glibc-3600cf1e524b2aad379fa5dc76d5e124b23fc9fa.tar.xz
glibc-3600cf1e524b2aad379fa5dc76d5e124b23fc9fa.zip
NaCl: Fix symbol names for euidaccess.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/nacl/euidaccess.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/nacl/euidaccess.c b/sysdeps/nacl/euidaccess.c
index 036e736001..50cbcfba29 100644
--- a/sysdeps/nacl/euidaccess.c
+++ b/sysdeps/nacl/euidaccess.c
@@ -20,8 +20,10 @@
 
 /* Test for access to FILE.  */
 int
-euidaccess (const char *file, int type)
+__euidaccess (const char *file, int type)
 {
   /* No NaCl process will ever be set-ID, so access and euidaccess are one.  */
   return __access (file, type);
 }
+weak_alias (__euidaccess, euidaccess)
+weak_alias (__euidaccess, eaccess)