ref: d2278660a0bce54ae4a5d37f2fbc6dd4c2f459c8
dir: /src/libc/arch/amd64/netbsd/_sigaction.c/
#include <stddef.h>
#include <sys.h>
extern int _sigaction2(int sig,
struct sigaction *new, struct sigaction *old,
int siginfo[], int num);
int
_sigaction(int sig, struct sigaction *new, struct sigaction *old)
{
extern int _setcontext[];
return _sigaction2(sig, new, old, _setcontext, 2);
}