reportme
(void) signal(SIGINT, reportme); /* Interrupt */
(void) signal(SIGTERM, reportme); /* Terminate */
(void) signal(SIGCHLD, reportme);
(void) signal(SIGUSR1, reportme);
(void) signal(SIGUSR2, reportme);
(void) signal(SIGABRT, reportme);
(void) signal(SIGALRM, reportme);
(void) signal(SIGFPE, reportme);
(void) signal(SIGILL, reportme);
(void) signal(SIGPIPE, reportme);
(void) signal(SIGQUIT, reportme);
(void) signal(SIGSEGV, reportme);
(void) signal(SIGBUS, reportme);
(void) signal(SIGEMT, reportme);
(void) signal(SIGPOLL, reportme);
(void) signal(SIGPROF, reportme);
(void) signal(SIGSYS, reportme);
(void) signal(SIGTRAP, reportme);
(void) signal(SIGVTALRM, reportme);
(void) signal(SIGXCPU, reportme);
(void) signal(SIGXFSZ, reportme);