Home | History | Annotate | Download | only in signal_h
      1   /*
      2      Test the definition of stack_t.
      3    */
      4 
      5 #include <sys/types.h>
      6 #include <signal.h>
      7 
      8 stack_t this_type_should_exist, t;
      9 void *sp;
     10 size_t size;
     11 int flags;
     12 
     13 int main(void)
     14 {
     15 	sp = t.ss_sp;
     16 	size = t.ss_size;
     17 	flags = t.ss_flags;
     18 
     19 	return 0;
     20 }
     21