SIG_DFL, SIG_IGN

Header: <csignal>

The SIG_DFL and SIG_IGN macros expand into integral expressions that are not equal to an address of any function. The macros define signal handling strategies for std::signal() function.

# Declarations

#define SIG_DFL /*implementation defined*/
#define SIG_IGN /*implementation defined*/

# See also