dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / kext-bind-to-kext-missing-symbol / bar.c
1
2 extern int foo();
3 extern int baz;
4
5 int bar() {
6 return foo() + baz;
7 }