]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/threaded-flat-lookup/client.c
72ba21892aeca3d8a76922894224c1dff12a1a31
[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 }