RAISE(3) BSD RAISE(3)
NAME
raise - send a signal
SYNOPSIS
#include <signal.h>
int raise(sig)
int sig;
DESCRIPTION
The raise function sends the signal specified by sig to the executing
program. See signal(3C) for a complete list of signal numbers.
SEE ALSO
signal(3C).
DIAGNOSTICS
raise returns zero if successful, non-zero if unsuccessful.