diff options
Diffstat (limited to 'sysdeps/powerpc/powerpc64/strcmp.S')
-rw-r--r-- | sysdeps/powerpc/powerpc64/strcmp.S | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sysdeps/powerpc/powerpc64/strcmp.S b/sysdeps/powerpc/powerpc64/strcmp.S index 3cadccac7a..ab5f8c231c 100644 --- a/sysdeps/powerpc/powerpc64/strcmp.S +++ b/sysdeps/powerpc/powerpc64/strcmp.S @@ -22,7 +22,11 @@ /* int [r3] strcmp (const char *s1 [r3], const char *s2 [r4]) */ -EALIGN (strcmp, 4, 0) +#ifndef STRCMP +# define STRCMP strcmp +#endif + +EALIGN (STRCMP, 4, 0) CALL_MCOUNT 2 #define rTMP2 r0 @@ -172,5 +176,5 @@ L(u3): sub rRTN, rWORD1, rWORD2 L(u4): lbz rWORD1, -1(rSTR1) sub rRTN, rWORD1, rWORD2 blr -END (strcmp) +END (STRCMP) libc_hidden_builtin_def (strcmp) |