kolibrios/programs/develop/clink/test/rel.c
2021-02-05 18:51:07 +00:00

16 lines
127 B
C

int a;
static int b;
static int g() {
return b;
}
int f() {
return a + g();
}
int main() {
return f();
}