Files
cppdraft_translate/cppdraft/csignal/syn.md
2025-10-25 03:02:53 +03:00

1.1 KiB

[csignal.syn]

17 Language support library [support]

17.14 Other runtime support [support.runtime]

17.14.4 Header synopsis [csignal.syn]

🔗

namespace std {using sig_atomic_t = see below; // [support.signal], signal handlersextern "C" using signal-handler = void(int); // exposition onlysignal-handler signal(int sig, signal-handler func); int raise(int sig);}#define SIG_DFL see below#define SIG_ERR see below#define SIG_IGN see below#define SIGABRT see below#define SIGFPE see below#define SIGILL see below#define SIGINT see below#define SIGSEGV see below#define SIGTERM see below

1

#

The contents of the header are the same as the C standard library header <signal.h>.