]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/symbol-resolver-interposed/myfoo.c
dyld-733.6.tar.gz
[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)