#include <signal.h>
int raise(int sig);
raise() raises the given signal, invoking the signal handler or performing the defined response to the signal. If a response was not defined or a signal handler was not installed, the application is aborted.
Non-zero, if there was an error; zero otherwise.