Add check for struct sigaction

This commit is contained in:
Christophe de Dinechin 2017-05-10 07:25:21 +02:00
parent 11393dc8af
commit faeb41efd2
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include <signal.h>
int main()
{
struct sigaction sa;
return 0;
}