Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / util / romcc / tests / simple_test7.c
1 void main(void)
2 {
3         int i;
4         i = 0;
5         do {
6                 int j;
7                 __builtin_outb(i, 0xab);
8                 j = i++;
9                 __builtin_outb(j, 0xdc);
10         } while(i <= 9);
11
12 }