ref: 6285c19b3325e77c9056c369de1d64dd5132cb56
dir: /sys/src/ape/lib/ap/gen/raise.c/
/* 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); }