]>
git.saurik.com Git - apple/ld64.git/blame_incremental - unit-tests/test-cases/re-export-and-use/foo.c
... / ...
Commit | Line | Data |
| 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 | } |