diff options
Diffstat (limited to 'libc')
-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) |