diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-12-16 02:52:30 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-12-16 02:52:30 -0800 |
commit | ae030fbef45996424def8c4b0bb5cb1c26b5bd9d (patch) | |
tree | ee243e8481e3ed0feec0bcbed88f8516a2d5028f /libc/sysdeps/linux/x86_64/clone.S | |
parent | 23cfec40b3302fda307ca9faec2f1597b3d7aebb (diff) |
fix multiple definitions of pthread_once for x86_64
also add a missing weak for clone
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/x86_64/clone.S')
-rw-r--r-- | libc/sysdeps/linux/x86_64/clone.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/x86_64/clone.S b/libc/sysdeps/linux/x86_64/clone.S index dc5eeb0a0..8f53a8412 100644 --- a/libc/sysdeps/linux/x86_64/clone.S +++ b/libc/sysdeps/linux/x86_64/clone.S @@ -112,3 +112,4 @@ clone: call HIDDEN_JUMPTARGET(_exit) .size clone,.-clone +weak_alias(clone, __clone) |