diff options
Diffstat (limited to 'sysdeps/unix/sparc')
-rw-r--r-- | sysdeps/unix/sparc/fork.S | 3 | ||||
-rw-r--r-- | sysdeps/unix/sparc/vfork.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sparc/fork.S b/sysdeps/unix/sparc/fork.S index 8ed343b80d..735a9599b7 100644 --- a/sysdeps/unix/sparc/fork.S +++ b/sysdeps/unix/sparc/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 97, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 97, 99, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -26,5 +26,6 @@ SYSCALL__ (fork, 0) sub %o1, 1, %o1 retl and %o0, %o1, %o0 +strong_alias (__fork, __GI___fork) weak_alias (__fork, fork) diff --git a/sysdeps/unix/sparc/vfork.S b/sysdeps/unix/sparc/vfork.S index 071ac728d9..0eb1080cf8 100644 --- a/sysdeps/unix/sparc/vfork.S +++ b/sysdeps/unix/sparc/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 97, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 97, 99, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -30,5 +30,6 @@ SYSCALL__ (vfork, 0) sub %o1, 1, %o1 retl and %o0, %o1, %o0 +strong_alias (__vfork, __GI___vfork) weak_alias (__vfork, vfork) |