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