blob: 549fe6e41592390aa35a91cce9284fa171a4ab74 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIG_DFL ((void(*)(int))-1)
/** default signal action **/
/***
is used as the ARGUMENT(func) argument to FUNCTION(signal) to indicate that
the default signal action should occur.
***/
/*
STDC(1)
*/
|