aboutsummaryrefslogtreecommitdiffstats
path: root/test/cse2/globals.c
blob: c6dd59cdf497101b6cecd8fb29263f24cc3aa67d (plain)
1
2
3
4
5
6
7
8
int glob1, glob2;

void toto() {
  if (glob1 > 4) {
    glob2 ++;
    glob1 --;
  }
}