diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-03 22:26:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-03 22:26:02 +0000 |
commit | 5841dad9e3379f74568d9650d4b28a0129715c61 (patch) | |
tree | 2db20cdcfcbc7be9506e0c6c537ed203f621292e /signal | |
parent | 5b070c7513197cd8483fd90dfbc7ae8c8b3f91e1 (diff) |
2002-08-03 Roland McGrath <roland@redhat.com>
* include/signal.h: Use libc_hidden_proto for raise, sigemptyset,
sigfillset, sigismember, __sigpause, __libc_current_sigrtmin,
and __libc_current_sigrtmax.
* signal/sigismem.c: Add libc_hidden_def.
* signal/sigfillset.c: Likewise.
* signal/sigempty.c: Likewise.
* sysdeps/generic/sigpause.c (__sigpause): Likewise.
* sysdeps/posix/sigpause.c (__sigpause): Likewise.
* sysdeps/unix/bsd/osf/alpha/sigpause.S: Likewise.
Diffstat (limited to 'signal')
-rw-r--r-- | signal/sigempty.c | 3 | ||||
-rw-r--r-- | signal/sigfillset.c | 3 | ||||
-rw-r--r-- | signal/sigismem.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/signal/sigempty.c b/signal/sigempty.c index 0164ed3829..dda035d197 100644 --- a/signal/sigempty.c +++ b/signal/sigempty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991,96,97,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 @@ -35,3 +35,4 @@ sigemptyset (set) return 0; } +libc_hidden_def (sigemptyset) diff --git a/signal/sigfillset.c b/signal/sigfillset.c index 3126774cdf..594770105f 100644 --- a/signal/sigfillset.c +++ b/signal/sigfillset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991,96,97,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 @@ -35,3 +35,4 @@ sigfillset (set) return 0; } +libc_hidden_def (sigfillset) diff --git a/signal/sigismem.c b/signal/sigismem.c index 0a5d6b625c..e18a3b14b7 100644 --- a/signal/sigismem.c +++ b/signal/sigismem.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991,96,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 @@ -32,3 +32,4 @@ sigismember (set, signo) return __sigismember (set, signo); } +libc_hidden_def (sigismember) |