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