blob: dc24d979b5d6fd37c0eb5b8ead36d600eacb7c6c [file] [log] [blame]
/*
Test that the function:
int sigwaitinfo(const sigset_t *restrict, siginfo_t *restrict);
is declared.
*/
#include <signal.h>
typedef int (*sigwaitinfo_test)(const sigset_t *restrict, siginfo_t *restrict);
int dummyfcn (void)
{
sigwaitinfo_test dummyvar;
dummyvar = sigwaitinfo;
return 0;
}