diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-10 00:14:28 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-10 00:14:28 +0000 |
commit | ccac11404612ae98a274001f619d343006fed3c0 (patch) | |
tree | 795d475c46a46b29a6c26cc1406aa0745b6fd745 | |
parent | 2bbcf533dd75db05318bccee5cc085f780c91a42 (diff) |
hide __sigsetmask
-rw-r--r-- | libc/signal/sigsetmask.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/signal/sigsetmask.c b/libc/signal/sigsetmask.c index 1c16d6411..56d7eccfa 100644 --- a/libc/signal/sigsetmask.c +++ b/libc/signal/sigsetmask.c @@ -22,7 +22,7 @@ #include "sigset-cvt-mask.h" /* Set the mask of blocked signals to MASK, returning the old mask. */ -int +int attribute_hidden __sigsetmask (int mask) { sigset_t set, oset; @@ -36,5 +36,4 @@ __sigsetmask (int mask) return sigset_get_old_mask (&oset); } - -weak_alias (__sigsetmask, sigsetmask) +weak_alias(__sigsetmask,sigsetmask) |