diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-03 15:01:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-03 15:01:18 +0000 |
commit | 0287134396b5750243972e382db3f9e9e2138aad (patch) | |
tree | e13a71a964a6e77ab1c75e6ed8c71051d530943a /libc/sysdeps/linux/m68k/clone.S | |
parent | 0c6405c1d65d8a570b731abf1163fe6003a62c2c (diff) |
Properly prefix some symbols
Diffstat (limited to 'libc/sysdeps/linux/m68k/clone.S')
-rw-r--r-- | libc/sysdeps/linux/m68k/clone.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/m68k/clone.S b/libc/sysdeps/linux/m68k/clone.S index 731587db4..f2e0122da 100644 --- a/libc/sysdeps/linux/m68k/clone.S +++ b/libc/sysdeps/linux/m68k/clone.S @@ -23,11 +23,11 @@ __clone: movel 4(%sp), %d1 /* no NULL function pointers */ movel %d1, %a0 tstl %d1 - beq.w syscall_error + beq.w __syscall_error movel 8(%sp), %d1 /* no NULL stack pointers */ movel %d1, %a1 tstl %d1 - beq.w syscall_error + beq.w __syscall_error /* Allocate space and copy the argument onto the new stack. */ movel 16(%sp), -(%a1) @@ -52,12 +52,12 @@ __clone: #endif tstl %d0 - bmi.w syscall_error + bmi.w __syscall_error beq.w thread_start rts -syscall_error: +__syscall_error: negl %d0 movel %d0, %sp@- lea __errno_location-.-8, %a0 |