summaryrefslogtreecommitdiff
path: root/test-chill/test-cases/examples/chill/test_align.c
blob: d1365cadb6eb32e77f28b1218d40f3d75322c423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
int main() {

	int m, n;
	int a[10], b[10];
	int i, j;
	for (i = 0; i < n; i++) {
		for (j = 0; j < n; j++) {
			a[i] = 1;
		}

		for (j = 0; j < n; j++) {
			b[i] -= 1;
		}

	}

	return 0;

}