PSIGNAL(3) Linux Programmer's Manual PSIGNAL(3)
NAME
psignal - print signal message
SYNOPSIS
#include<signal.h>
voidpsignal(int sig,constchar*s);
externconstchar*const sys_siglist[]
DESCRIPTION
The psignal() function displays a message on stderr consisting of the
string s, a colon, a space, and a string describing the signal number
sig. If sig is invalid, the message displayed will indicate an unknown
signal.
The array sys_siglist holds the signal description strings indexed by
signal number.
RETURNVALUE
The psignal() function returns no value.
CONFORMINGTO
BSD 4.3
SEEALSO
perror(3), strsignal(3)
GNU 1993-04-13 PSIGNAL(3)