diff options
Diffstat (limited to 'libc/string/arm/memset.S')
-rw-r--r-- | libc/string/arm/memset.S | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libc/string/arm/memset.S b/libc/string/arm/memset.S index 07d3913f9..097c5b92a 100644 --- a/libc/string/arm/memset.S +++ b/libc/string/arm/memset.S @@ -19,10 +19,10 @@ #include <sys/syscall.h> - .text - .global memset; - .type memset,%function - .align 4; \ +.text +.global memset +.type memset,%function +.align 4 memset: mov a4, a1 @@ -68,5 +68,4 @@ memset: strb a2, [a4], $1 mov pc, lr -.size memset,.-memset; - +.size memset,.-memset |