libcheck: port to latest check git
[platform/upstream/gstreamer.git] / libs / gst / check / libcheck / libcompat / 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 }