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