1#include <stdlib.h>
2
3int
4main ()
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