1typedef int xtype;
2
3xtype
4foo (a)
5     xtype a;
6{
7  return a | 0x7f;
8}
9
10main ()
11{
12  printf ("%08x\n", foo (-1));
13}
14