mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 13:38:48 +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;
|
||
|
}
|