f(c)1 f (c)
2     unsigned char c;
3 {
4   if (c != 0xFF)
5     abort ();
6 }
7 
main()8 main ()
9 {
10   f (-1);
11   exit (0);
12 }
13