etc/protocols - sync with NetBSD-8
[minix.git] / tests / usr.bin / xlint / lint1 / d_c99_for_loops.c
blob48e380cb36003effa30bf1db116235b094c96e41
1 /* c99 for loops */
2 extern void foo(int);
4 int
5 main(void)
7 // Test the basic functionality
8 for (int i = 0; i < 10; i++)
9 foo(i);
11 // Test that the scope of the iterator is correct
12 for (int i = 0; i < 10; i++)
13 continue;
14 return 0;