summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.27/tests/tests2/45_empty_for.c
blob: 7cef513f886af2e7dd00de8d06eb9ea44d3d9b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

int main()
{
   int Count = 0;

   for (;;)
   {
      Count++;
      printf("%d\n", Count);
      if (Count >= 10)
         break;
   }

   return 0;
}

/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/