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

int sigaction(int sig, const struct sigaction * restrict act, struct sigaction * restrict oact)
{
	(void)sig; (void)act; (void)oact;
	return 0;
}

/*
POSIX(1)
*/