Home | History | Annotate | Download | only in tests
      1 #include <stdlib.h>
      2 
      3 int
      4 main ()
      5 {
      6   volatile int x;  /* make sure it isn't in a register */
      7 
      8   if (x == 0)
      9      return 0;
     10   else
     11      return 1;
     12 }
     13