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