diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc')
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/fork.S | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/vfork.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/fork.S b/sysdeps/unix/sysv/linux/sparc/fork.S index 870d9608c1..8d017398e1 100644 --- a/sysdeps/unix/sysv/linux/sparc/fork.S +++ b/sysdeps/unix/sysv/linux/sparc/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza <miguel@gnu.ai.mit.edu>, 1997. @@ -26,4 +26,5 @@ PSEUDO (__libc_fork, fork, 0) PSEUDO_END (__libc_fork) weak_alias (__libc_fork, __fork) +strong_alias (__fork, __GI___fork) weak_alias (__libc_fork, fork) diff --git a/sysdeps/unix/sysv/linux/sparc/vfork.S b/sysdeps/unix/sysv/linux/sparc/vfork.S index 2eae524c5b..c5753a363a 100644 --- a/sysdeps/unix/sysv/linux/sparc/vfork.S +++ b/sysdeps/unix/sysv/linux/sparc/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jj@ultra.linux.cz>, 1999. @@ -25,4 +25,5 @@ PSEUDO (__vfork, vfork, 0) and %o0, %o1, %o0 PSEUDO_END (__vfork) +strong_alias (__vfork, __GI___vfork) weak_alias (__vfork, vfork) |