aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/nacl
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-07-23 15:54:21 -0700
committerRoland McGrath <roland@hack.frob.com>2015-07-23 15:54:21 -0700
commitf8c3be3f23ffc2f5853cb57277c56987c18d0ab6 (patch)
tree4cd4d38c6f819f8d243f93f3f50331768174b121 /sysdeps/nacl
parent3840aabcd5b482b5e6cf5b204d1019ea0ddc9827 (diff)
downloadglibc-f8c3be3f23ffc2f5853cb57277c56987c18d0ab6.tar
glibc-f8c3be3f23ffc2f5853cb57277c56987c18d0ab6.tar.gz
glibc-f8c3be3f23ffc2f5853cb57277c56987c18d0ab6.tar.bz2
glibc-f8c3be3f23ffc2f5853cb57277c56987c18d0ab6.zip
NaCl: Fix missing getdtablesize symbol.
Diffstat (limited to 'sysdeps/nacl')
-rw-r--r--sysdeps/nacl/getdtsz.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/nacl/getdtsz.c b/sysdeps/nacl/getdtsz.c
index 31c9978103..e0ba14fdfa 100644
--- a/sysdeps/nacl/getdtsz.c
+++ b/sysdeps/nacl/getdtsz.c
@@ -26,3 +26,4 @@ __getdtablesize (void)
/* There is no actual limit in NaCl, just memory. */
return -1;
}
+weak_alias (__getdtablesize, getdtablesize)