diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-02-15 09:54:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-02-15 09:54:41 +0000 |
commit | c66701f81d1e06e04464f41f5082822951bc14dc (patch) | |
tree | a90349fad66d8e69d39fee2bb1ca5231a09ae069 | |
parent | bc372f9a2456cb419d30f3b7d742631bcec0141a (diff) |
Oops.
-rw-r--r-- | libc/sysdeps/linux/sparc/fork.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sparc/fork.S b/libc/sysdeps/linux/sparc/fork.S index 982cdbe8f..1b271060b 100644 --- a/libc/sysdeps/linux/sparc/fork.S +++ b/libc/sysdeps/linux/sparc/fork.S @@ -22,7 +22,7 @@ #include <sys/syscall.h> .text; -.global fork; +.global __libc_fork; .align 4; .type __libc_fork,@function; @@ -44,4 +44,5 @@ __libc_fork: and %o0, %o1, %o0 .size __libc_fork,.-__libc_fork; +.weak fork; fork = __libc_fork |