diff options
Diffstat (limited to 'libc/string/arm/strcmp.S')
-rw-r--r-- | libc/string/arm/strcmp.S | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libc/string/arm/strcmp.S b/libc/string/arm/strcmp.S index b2f26d63a..1f486546c 100644 --- a/libc/string/arm/strcmp.S +++ b/libc/string/arm/strcmp.S @@ -29,10 +29,10 @@ * by Erik Andersen <andersen@codepoet.org> */ - .text - .global strcmp; - .type strcmp,%function - .align 4; \ +.text +.global strcmp +.type strcmp,%function +.align 4 strcmp: 1: @@ -44,6 +44,4 @@ strcmp: sub r0, r2, r3 mov pc, lr -.weak strcoll; - strcoll = strcmp - +.weak strcoll ; strcoll = strcmp |