2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 970923-1.c
blob1d78b47c724b8d5e30645369939614fdbd30fb98
1 int
2 ts(a)
3 int a;
5 if (a < 1000 && a > 2000)
6 return 1;
7 else
8 return 0;
11 int
12 tu(a)
13 unsigned int a;
15 if (a < 1000 && a > 2000)
16 return 1;
17 else
18 return 0;
22 main()
24 if (ts (0) || tu (0))
25 abort ();
26 exit (0);