]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/linker_options-framework-static-chain/foo.c
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / linker_options-framework-static-chain / foo.c
1
2 extern void bar();
3 extern void baz();
4
5 void foo() {
6 bar();
7 baz();
8 }