Copied atexit() code from fakesmtp.c to fakepop.c so that its
[mmh] / h / signals.h
1
2 /*
3  * signals.h -- header file for nmh signal interface
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include <config.h>
8 #endif
9
10 /*
11  * The type for a signal handler
12  */
13 typedef void (*SIGNAL_HANDLER)(int);
14
15 /*
16  * prototypes
17  */
18 SIGNAL_HANDLER SIGNAL (int, SIGNAL_HANDLER);
19 SIGNAL_HANDLER SIGNAL2 (int, SIGNAL_HANDLER);