diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-13 21:11:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-13 21:11:40 +0000 |
commit | ac131a333b1c63000fcab69cc6723d75d7075a3a (patch) | |
tree | 1c3ca40ae25e1d14abcd13ef172247d7cb51ae0b /libc/string/ia64/memchr.S | |
parent | 2401710fc05ec38fa5d0f5a2fa68a1f8c322b883 (diff) |
Remove the rest of "bounded pointers" scaffolding. gcc website says"
"Bounds Checking Projects... This project has been abandoned"
for four years at least.
Diffstat (limited to 'libc/string/ia64/memchr.S')
-rw-r--r-- | libc/string/ia64/memchr.S | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libc/string/ia64/memchr.S b/libc/string/ia64/memchr.S index 0246b5997..f25e80302 100644 --- a/libc/string/ia64/memchr.S +++ b/libc/string/ia64/memchr.S @@ -126,8 +126,6 @@ ENTRY(__memchr) END(__memchr) -weak_alias (__memchr, memchr) -#if !__BOUNDED_POINTERS__ -weak_alias (__memchr, __ubp_memchr) -#endif -libc_hidden_def (memchr) +weak_alias(__memchr, memchr) +weak_alias(__memchr, __ubp_memchr) +libc_hidden_def(memchr) |