summaryrefslogtreecommitdiff
path: root/test/linker/main.c
blob: d70bc70335cb6845e8b0a919dc7586553b29ee8b (plain)
1
2
3
4
5
6
7
8
9
10
int foo() {
  return 42;
}

void bar();

int main() {
  foo();
  bar();
}