]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/static-executable-weak-defines/test.c
3e03861e59859f6c873883a55c66950c1e26501b
[apple/ld64.git] / unit-tests / test-cases / static-executable-weak-defines / test.c
1
2
3
4 __attribute__((weak)) int foo()
5 {
6 return 0;
7 }
8
9
10 int entry()
11 {
12 return foo();
13 }