]> git.saurik.com Git - apple/ld64.git/blame - ld64-134.9/unit-tests/test-cases/static-executable-pie/test.c
ld64-134.9.tar.gz
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / static-executable-pie / test.c
CommitLineData
b1f7435d
A
1
2int a;
3int b = 5;
4int* pa = &a;
5int* pb = &b;
6
7int foo()
8{
9 *pa = 4;
10 return a+b;
11}
12
13
14int entry()
15{
16 return foo();
17}
18
19