kolibrios/programs/develop/clink/test/rel.c
Magomed Kostoev (mkostoevr) 0931556017 Add clink (COFF-to-COFF linker cpable of making DLLs for KolibriOS from several separated COFF objects)
git-svn-id: svn://kolibrios.org@8579 a494cfbc-eb01-0410-851d-a64ba20cac60
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();
}