b14e9d4e9b3410dad545a90585d0b5e57f1044d0
[tinycc.git] / tests / tests2 / 45_empty_for.c
blobb14e9d4e9b3410dad545a90585d0b5e57f1044d0
1 #include <stdio.h>
3 int main()
5 int Count = 0;
7 for (;;)
9 Count++;
10 printf("%d\n", Count);
11 if (Count >= 10)
12 break;
15 return 0;
18 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/