blob: 17e54434f49e7589a71c3cbf2f0e6809bb9e947d (
plain) (
tree)
|
|
#include <signal.h> /* sigpause */
/**
* Remove a signal from the signal mask and suspend the thread.
*
* LSB 5.0: LSB-Core-generic/baselib---xpg-sigpause.html
*/
int __xpg_sigpause(int sig)
{
return sigpause(sig);
}
|