/* This is a system call. We only have to provide the wrapper. */ #include int __sigprocmask (int how, const sigset_t *set, sigset_t *oset) { return sigprocmask (how, set, oset); }