mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
8 lines
124 B
C
8 lines
124 B
C
|
#include <signal.h>
|
||
|
#ifndef SIGHUP
|
||
|
#define SIGHUP 1 /* hangup */
|
||
|
#endif
|
||
|
#ifndef SIGQUIT
|
||
|
#define SIGQUIT 3 /* quit */
|
||
|
#endif
|