summaryrefslogtreecommitdiff
path: root/Tests/Simple/simpleCLib.c
blob: 65098656a93ae8f502d79647f94a07be03c5e5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int FooBar()
{
  int class;
  int private = 10;
  for (class = 0; class < private; class ++) {
    printf("Count: %d/%d\n", class, private);
  }
  return 0;
}