]>
git.saurik.com Git - apple/dyld.git/blame_incremental - unit-tests/test-cases/threaded-flat-lookup/client.c
... / ...
Commit | Line | Data |
| 1 | |
| 2 | extern void foo(); |
| 3 | extern void bar(); |
| 4 | extern void baz(); |
| 5 | |
| 6 | void doit() |
| 7 | { |
| 8 | foo(); |
| 9 | bar(); |
| 10 | baz(); |
| 11 | } |