shithub: riscv

ref: 019a935f6b8961b8a8fab3916f1e529c36f261e2
dir: /sys/src/ape/lib/ap/gen/raise.c/

View raw version
/* not a posix function, but implemented with posix kill, getpid */

#include <sys/types.h>
#include <signal.h>
#include <unistd.h>

int
raise(int sig)
{
	return kill(getpid(), sig);
}