dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / symbol-sets / main.c
1
2 // This will be re-exported from a symbol set in bar with an alias
3 int symbol_from_xnu() {
4 return 0;
5 }
6
7 // This will be re-exported from a symbol set in bar without an alias
8 int symbol_from_xnu_no_alias() {
9 return 0;
10 }
11
12 int _start() {
13 return 0;
14 }