Home | History | Annotate | Download | only in tests
      1 #include <stdio.h>
      2 
      3 int main ()
      4 {
      5   int x;
      6 
      7   printf ("x = %d\n", x==0xCAFEBABE ? 99 : 88);
      8 
      9   return 0;
     10 }
     11