]> git.saurik.com Git - apple/ld64.git/blame_incremental - 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
1
2int a;
3int b = 5;
4
5int foo()
6{
7 return a+b;
8}
9
10
11int entry()
12{
13 return foo();
14}
15
16