1 2 3 4 5 6 7 8 9 10 11
#include <stdlib.h> extern int foo(); // test that calls to resolver based function in same dylib work int fooPlusOne() { return foo() + 1; }