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