/* Test that the function: int sigprocmask(int, const sigset_t *restrict, sigset_t *restrict); is declared. Removed restrict keyword from typedef. */ #include typedef int (*sigprocmask_test)(int, const sigset_t *, sigset_t *); int dummyfcn (void) { sigprocmask_test dummyvar; dummyvar = sigprocmask; return 0; }