/* c99 for loops */
extern void foo(int);
int
main(void)
{
for (int i = 0; i < 10; i++)
foo(i);
return 0;
}