diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2006-01-14 07:58:04 +0000 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-14 07:58:04 +0000 | 
| commit | c55044b05f6672f4a262f67e12d8875841c99a4a (patch) | |
| tree | f3d1a3c67f97182cdbf6aaabcbcbee6910328e86 /libc | |
| parent | 4eef499e6a9445b5dcda7b229ff5f3a9b5c677fb (diff) | |
dont hide __libc_sigaction
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/signal/sigaction.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/signal/sigaction.c b/libc/signal/sigaction.c index 01b8c763a..f0569b392 100644 --- a/libc/signal/sigaction.c +++ b/libc/signal/sigaction.c @@ -33,7 +33,7 @@ libc_hidden_proto(memcpy)  /* If ACT is not NULL, change the action for SIG to *ACT.     If OACT is not NULL, put the old action for SIG in *OACT.  */ -int attribute_hidden +int  __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)  {  	int result; @@ -70,7 +70,7 @@ __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)  /* If ACT is not NULL, change the action for SIG to *ACT.     If OACT is not NULL, put the old action for SIG in *OACT.  */ -int attribute_hidden +int  __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)  {  	int result;  | 
