diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:07:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 11:07:26 +0000 |
commit | 7e587d1822a6f2a0020275c0e855dd9984a6977d (patch) | |
tree | 14e9671e45378c2aba5529ae3e08fe96b2edb79d | |
parent | 7a077bd196cd60f20298070c37fc6ef620b1aa0a (diff) | |
download | glibc-7e587d1822a6f2a0020275c0e855dd9984a6977d.tar glibc-7e587d1822a6f2a0020275c0e855dd9984a6977d.tar.gz glibc-7e587d1822a6f2a0020275c0e855dd9984a6977d.tar.bz2 glibc-7e587d1822a6f2a0020275c0e855dd9984a6977d.zip |
Add __GI___fork alias.
-rw-r--r-- | sysdeps/unix/arm/fork.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/bsd/osf/alpha/fork.S | 3 | ||||
-rw-r--r-- | sysdeps/unix/mips/fork.S | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/unix/arm/fork.S b/sysdeps/unix/arm/fork.S index deb22548e2..19981451b6 100644 --- a/sysdeps/unix/arm/fork.S +++ b/sysdeps/unix/arm/fork.S @@ -29,5 +29,6 @@ SYSCALL__ (fork, 0) and r0, r0, r1 RETINSTR(mov, pc, r14) PSEUDO_END (__fork) +strong_alias (__fork, __GI___fork) weak_alias (__fork, fork) diff --git a/sysdeps/unix/bsd/osf/alpha/fork.S b/sysdeps/unix/bsd/osf/alpha/fork.S index 90cf4bd9c8..13b12239ba 100644 --- a/sysdeps/unix/bsd/osf/alpha/fork.S +++ b/sysdeps/unix/bsd/osf/alpha/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1995, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). @@ -23,5 +23,6 @@ SYSCALL__ (fork, 0) cmovne a4, 0, v0 ret .end __fork +strong_alias (__fork, __GI___fork) weak_alias (__fork, fork) diff --git a/sysdeps/unix/mips/fork.S b/sysdeps/unix/mips/fork.S index 3273216030..dcec965671 100644 --- a/sysdeps/unix/mips/fork.S +++ b/sysdeps/unix/mips/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1995, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). @@ -27,5 +27,6 @@ SYSCALL__ (fork, 0) parent: ret .end __fork +strong_alias (__fork, __GI___fork) weak_alias (__fork, fork) |