- Function
 Install a signal handler.
- Header
 - Declaration
 
__sigfunc __fastcall__ signal (int sig, __sigfunc func);- Description
 
signalinstalls a handler for the given signal. The handler may either be a user supplied function, or one of the predefined signal handlersSIG_IGNorSIG_DFL. The function returns the previous value if the signal , or the special function vector SIG_ERR in case of an error.- Limits
 
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
 - Availability
 ISO 9899
- See also
 - Example
 None.