dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / packed-kext-text / bar.c
1
2 // Hack to force a section on __TEXT as otherwise its given the vmSize by forEachSegment
3 __attribute__((used, section("__TEXT, __const")))
4 int packHack = 0;
5
6 extern int foo();
7
8 int bar() {
9 return foo();
10 }