]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/symbol-resolver-interposed/myfoo.c
62123312be2e465ab3f65b2752d6d4a08e7e8403
[apple/dyld.git] / unit-tests / test-cases / symbol-resolver-interposed / myfoo.c
1
2 #include <mach-o/dyld-interposing.h>
3 #include "foo.h"
4
5 int myfoo()
6 {
7 foo();
8 return 20;
9 }
10
11 DYLD_INTERPOSE(myfoo, foo)