]>
git.saurik.com Git - apple/ld64.git/blame_incremental - unit-tests/test-cases/alias-basic/main.c
... / ...
Commit | Line | Data |
| 1 | extern void bar(); |
| 2 | extern int result; |
| 3 | |
| 4 | int myresult = 1; |
| 5 | |
| 6 | int mymain() |
| 7 | { |
| 8 | bar(); |
| 9 | return result; |
| 10 | } |
| 11 | |
| 12 | void mybar() |
| 13 | { |
| 14 | |
| 15 | } |
| 16 | |