17 for (i
= 1; i
< 10; i
++)
19 printf( "%d ", callee( i
));
22 printf( " Goodbye!\n" );
25 /* This routine exists only for aCC. The way we compile this test is
26 that we use aCC for the actual compile into the object file but then
27 use ld directly for the link. When we do this, we get an undefined
28 symbol _main(). Therefore, for aCC, we have this routine in here and