pn2adg.cc: edge_name: allocate enough space for edge name
[ppn.git] / tests / inputs / test_mod.c
blob77506ca3da68ff1b8f9fe48deb0e936b69f06375
1 void F1(int *tile_out);
2 void F2(const int *tile_in, int *tile_out);
3 void F3(const int *tile_in);
5 int main (int argc, char **argv)
7 int tile;
9 for (int i = 0; i < 10; i++)
11 F1(&tile);
12 if (i % 3 == 0) F2(&tile,&tile);
13 if (i % 3 == 1) F2(&tile,&tile);
14 //if (i % 3 == 2) F2(&tile,&tile);
15 else F2(&tile,&tile);
16 F3(&tile);
19 return 0;