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