dyld-733.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / lazy-dylib-missing-symbol / foo.c
1
2
3 int foo()
4 {
5 return 1;
6 }
7
8 #if BAR
9 int bar()
10 {
11 return 1;
12 }
13 #endif
14
15