dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / vtable-patching-metaclass-alias / main.c
1
2 // This will be re-exported from a symbol set in bar with an alias
3 int symbol_from_xnu() __asm("__ZN15OSMetaClassBase8DispatchE5IORPC");
4 int symbol_from_xnu() {
5 return 0;
6 }
7
8 int _start() {
9 return 0;
10 }