diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/sigpause.c | 4 | ||||
-rw-r--r-- | sysdeps/posix/sigpause.c | 4 | ||||
-rw-r--r-- | sysdeps/unix/bsd/osf/alpha/sigpause.S | 3 |
3 files changed, 6 insertions, 5 deletions
diff --git a/sysdeps/generic/sigpause.c b/sysdeps/generic/sigpause.c index cbc5574f70..3906dbdfe6 100644 --- a/sysdeps/generic/sigpause.c +++ b/sysdeps/generic/sigpause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,95,96,2000,02 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 @@ -28,7 +28,7 @@ __sigpause (sig_or_mask, is_sig) return -1; } stub_warning (__sigpause) - +libc_hidden_def (__sigpause) int __default_sigpause (int mask) diff --git a/sysdeps/posix/sigpause.c b/sysdeps/posix/sigpause.c index 1aaf0192ce..fc5f79e31e 100644 --- a/sysdeps/posix/sigpause.c +++ b/sysdeps/posix/sigpause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 1994-1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,94-98,2000,02 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 @@ -53,7 +53,7 @@ __sigpause (int sig_or_mask, int is_sig) return __sigsuspend (&set); } - +libc_hidden_def (__sigpause) /* We have to provide a default version of this function since the standards demand it. The version which is a bit more reasonable is diff --git a/sysdeps/unix/bsd/osf/alpha/sigpause.S b/sysdeps/unix/bsd/osf/alpha/sigpause.S index 021e6036e2..7646366473 100644 --- a/sysdeps/unix/bsd/osf/alpha/sigpause.S +++ b/sysdeps/unix/bsd/osf/alpha/sigpause.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993,95,97,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). @@ -25,5 +25,6 @@ SYSCALL__ (sigpause, 1) ret .end __sigpause +libc_hidden_def (__sigpause) weak_alias (__sigpause, sigpause) |