dyld-750.5.tar.gz
[apple/dyld.git] / testing / test-cases / symbol-resolver-basic.dtest / foo2.c
1
2 #include <stdlib.h>
3
4 extern int foo();
5
6 // test that calls to resolver based function in same dylib work
7 int fooPlusOne()
8 {
9 return foo() + 1;
10 }
11