dyld-732.8.tar.gz
[apple/dyld.git] / testing / test-cases / dyld_has_inserted_or_interposing_libraries.dtest / interposer.c
1
2 #include <mach-o/dyld-interposing.h>
3
4 extern void foo();
5
6 void my_foo() { }
7
8 DYLD_INTERPOSE(my_foo, foo);