mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
11 lines
144 B
C
11 lines
144 B
C
|
#include "libcompat.h"
|
||
|
|
||
|
const char *
|
||
|
strsignal (int sig)
|
||
|
{
|
||
|
static char signame[40];
|
||
|
|
||
|
sprintf (signame, "SIG #%d", sig);
|
||
|
return signame;
|
||
|
}
|