summaryrefslogtreecommitdiff
path: root/src/signal/sigprocmask.c
blob: 73017da57419b6ea4d9d1027dcced77ffe35a9da (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "sys/types.h"
#include <signal.h>

int sigprocmask(int how, const sigset_t * restrict set, sigset_t * restrict oset)
{
	(void)how; (void)set; (void)oset;
	return 0;
}
/*
POSIX(1)
*/