]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/re-export-and-use/foo.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / re-export-and-use / foo.c
1 extern int bar();
2 extern int baz();
3
4 void* pbar = &bar;
5
6 #if USE_BAZ
7 void* pbaz = &baz;
8 #endif
9
10 int foo()
11 {
12 #if USE_BAZ
13 baz();
14 #endif
15 return bar();
16 }