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/i960 | |
parent | 0c6405c1d65d8a570b731abf1163fe6003a62c2c (diff) |
Properly prefix some symbols
Diffstat (limited to 'libc/sysdeps/linux/i960')
-rw-r--r-- | libc/sysdeps/linux/i960/clone.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/i960/clone.S b/libc/sysdeps/linux/i960/clone.S index e6d504bb7..c6c0dc73a 100644 --- a/libc/sysdeps/linux/i960/clone.S +++ b/libc/sysdeps/linux/i960/clone.S @@ -44,11 +44,11 @@ __clone: calls 0 /* Do the system call */ - cmpibg 0, g0, syscall_error /* if < 0, error */ + cmpibg 0, g0, __syscall_error /* if < 0, error */ be thread_start /* if == 0, we're the child */ ret /* we're the parent */ -syscall_error: +__syscall_error: not g0, r3 callx ___errno_location st r3, (g0) |