diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:01:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:01:24 +0000 |
commit | 3f788a09d4eb871eeef236b950e06afc4d233e29 (patch) | |
tree | da53b9ceab5cc142a5b9ef75eb7eb9f0b298baa2 /libc/sysdeps/linux/arm/clone.S | |
parent | 299d67551ee7473ccf2d3ace53b73383b295fe27 (diff) |
touchup syntax for no real good reason ;)
Diffstat (limited to 'libc/sysdeps/linux/arm/clone.S')
-rw-r--r-- | libc/sysdeps/linux/arm/clone.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/arm/clone.S b/libc/sysdeps/linux/arm/clone.S index 7b5bf2ee3..a4d5f99bd 100644 --- a/libc/sysdeps/linux/arm/clone.S +++ b/libc/sysdeps/linux/arm/clone.S @@ -27,10 +27,10 @@ #ifdef __NR_clone /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg); */ - .text - .globl __clone - .type __clone,%function - .align 4 +.text +.global __clone +.type __clone,%function +.align 4 __clone: @ sanity check args cmp r0, #0 @@ -68,9 +68,9 @@ __clone: __error: b __syscall_error - .size __clone,.-__clone +.size __clone,.-__clone - .weak clone +.weak clone clone = __clone #endif |