]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/symbol-resolver-interposed/myfoo.c
dyld-210.2.3.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 return 20;
8 }
9
10 DYLD_INTERPOSE(myfoo, foo)