diff options
Diffstat (limited to 'sysdeps/x86_64/memcmp.S')
-rw-r--r-- | sysdeps/x86_64/memcmp.S | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/x86_64/memcmp.S b/sysdeps/x86_64/memcmp.S index 8a03e572e8..b53f2c0866 100644 --- a/sysdeps/x86_64/memcmp.S +++ b/sysdeps/x86_64/memcmp.S @@ -356,9 +356,10 @@ L(ATR32res): .p2align 4,, 4 END(memcmp) -#undef bcmp +#ifdef USE_AS_MEMCMPEQ +libc_hidden_def (memcmp) +#else +# undef bcmp weak_alias (memcmp, bcmp) -#undef __memcmpeq -strong_alias (memcmp, __memcmpeq) libc_hidden_builtin_def (memcmp) -libc_hidden_def (__memcmpeq) +#endif |