#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 undefined or a signal handler is not installed, the application aborts.
Non-zero, if an error occurred; zero otherwise.