zig/test/link/common_symbols/a.c

7 lines
65 B
C
Raw Normal View History

2021-06-10 18:51:41 +01:00
int i;
int j;
int add_to_i_and_j(int x) {
return x + i + j;
}