blob: 72dfa7aee5626622f70f4353994dbe3b2490cc99 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIGTERM (15)
/** terminate **/
/***
is a signal indicating that the system is requesting the program to terminate.
***/
/* Value selected to match requirements for COMMAND(kill) and COMMAND(trap). */
/*
STDC(1)
*/
|