Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/gen/common/psignal.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

21 lines
293 B
C
Executable File

#pragma ident "@(#)psignal.c 1.2 92/07/20 SMI"
/*
* Print the name of the signal indicated
* along with the supplied message.
*/
#include <stdio.h>
extern int fflush();
extern void _psignal();
void
psignal(sig, s)
unsigned sig;
char *s;
{
(void)fflush(stderr);
_psignal(sig, s);
}