diff options
Diffstat (limited to 'libc/string/arm/memcmp.S')
-rw-r--r-- | libc/string/arm/memcmp.S | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libc/string/arm/memcmp.S b/libc/string/arm/memcmp.S index e0f21aef4..6f7a064bd 100644 --- a/libc/string/arm/memcmp.S +++ b/libc/string/arm/memcmp.S @@ -30,10 +30,10 @@ */ - .text - .global memcmp; - .type memcmp,%function - .align 4; \ +.text +.global memcmp +.type memcmp,%function +.align 4 memcmp: /* if ((len - 1) < 0) return 0 */ @@ -52,6 +52,4 @@ memcmp: sub r0, r2, r3 mov pc, lr -.weak bcmp; - bcmp = memcmp - +.weak bcmp ; bcmp = memcmp |