Home | History | Annotate | Download | only in signal_h
      1   /*
      2      Test that the function:
      3      int sigprocmask(int, const sigset_t *restrict, sigset_t *restrict);
      4      is declared.
      5      Removed restrict keyword from typedef.
      6    */
      7 
      8 #include <signal.h>
      9 
     10 typedef int (*sigprocmask_test) (int, const sigset_t *, sigset_t *);
     11 
     12 int dummyfcn(void)
     13 {
     14 	sigprocmask_test dummyvar;
     15 	dummyvar = sigprocmask;
     16 	return 0;
     17 }
     18