dyld-732.8.tar.gz
[apple/dyld.git] / testing / test-cases / interpose-then-dlopen.dtest / interposer.c
1 #include <stdlib.h>
2 #include <string.h>
3 #include <mach-o/dyld-interposing.h>
4
5
6
7 int myFoo() {
8 return 4;
9 }
10
11 int interposableFoo();
12
13 DYLD_INTERPOSE(myFoo, interposableFoo)