mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 00:46:12 +00:00
10 lines
147 B
C
10 lines
147 B
C
#include "libcompat.h"
|
|
|
|
const char *strsignal(int sig)
|
|
{
|
|
static char signame[40];
|
|
|
|
sprintf(signame, "SIG #%d", sig);
|
|
return signame;
|
|
}
|