1extern void abort ();
2
3int foo(unsigned short x)
4{
5  unsigned short y;
6  y = x > 32767 ? x - 32768 : 0;
7  return y;
8}
9
10int main()
11{
12  if (foo (0) != 0)
13    abort ();
14  if (foo (32767) != 0)
15    abort ();
16  if (foo (32768) != 0)
17    abort ();
18  if (foo (32769) != 1)
19    abort ();
20  if (foo (65535) != 32767)
21    abort ();
22  return 0;
23}
24
25