repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
signal
/
sigismember.c
blob
ab87d62249de487cdb1c0990ffa26acf60160ade
1
#include <signal.h>
2
3
int
sigismember
(
const
sigset_t
*
set
,
int
sig
)
4
{
5
unsigned
s
=
sig
-
1
;
6
if
(
s
>=
_NSIG
-
1
)
return
0
;
7
return
!!(
set
->
__bits
[
s
/
8
/
sizeof
*
set
->
__bits
] &
1UL
<<(
s
&
8
*
sizeof
*
set
->
__bits
-
1
));
8
}