]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-dead_strip-tentative/main.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-dead_strip-tentative / main.c
1
2 extern int foo();
3 extern int bar();
4 extern int baz();
5
6 int main()
7 {
8 foo();
9 bar();
10 baz();
11 return 0;
12 }