]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/static-executable/test.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / static-executable / test.c
1
2 int a;
3 int b = 5;
4
5 int foo()
6 {
7 return a+b;
8 }
9
10
11 int entry()
12 {
13 return foo();
14 }
15
16