repo.or.cz
/
glibc-ports.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
.
[glibc-ports.git]
/
sysdeps
/
unix
/
sysv
/
aix
/
sigprocmask.c
blob
1046903b9c304274cbacbce02fc1f2427e85f691
1
/* This is a system call. We only have to provide the wrapper. */
2
#include <signal.h>
3
4
int
5
__sigprocmask
(
int
how
,
const
sigset_t
*
set
,
sigset_t
*
oset
)
6
{
7
return
sigprocmask
(
how
,
set
,
oset
);
8
}