57e71cd3d43d477ec117c448c0ae95a2d3c6cf78
[platform/upstream/gstreamer.git] / libs / gst / check / libcheck / strsignal.c
1 #include "libcompat.h"
2
3 char *
4 strsignal (int sig)
5 {
6   static char signame[40];
7
8   sprintf (signame, "SIG #%d", sig);
9   return signame;
10 }