Add check for the 'sigaction' function
This check is easier to get in autoconf than a test for struct sigaction. It's also more complete, since the recorder actually needs the function.
This commit is contained in:
parent
5cda3e208b
commit
c691f04167
|
@ -0,0 +1,8 @@
|
|||
#include <signal.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
struct sigaction sa;
|
||||
sigaction(11, &sa, NULL);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue