1f(short *p)
2{
3  short x = *p;
4  return (--x < 0);
5}
6
7main()
8{
9  short x = -10;
10  if (!f(&x))
11    abort();
12  exit(0);
13}
14