]>
git.saurik.com Git - apple/ld64.git/blame_incremental - unit-tests/test-cases/symbol-moving/main.c
... / ...
Commit | Line | Data |
| 1 | |
| 2 | extern void foo(); |
| 3 | extern void bar(); |
| 4 | |
| 5 | extern void aaa(); |
| 6 | extern void bbb(); |
| 7 | |
| 8 | |
| 9 | int main() |
| 10 | { |
| 11 | foo(); |
| 12 | bar(); |
| 13 | aaa(); |
| 14 | bbb(); |
| 15 | |
| 16 | return 0; |
| 17 | } |