dyld-733.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / threaded-flat-lookup / client.c
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 }