dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / text-fixups-x86_64 / bar.c
1
2 int g = 0;
3
4 int bar() {
5 return g;
6 }
7
8 __attribute__((section(("__TEXT, __text"))))
9 __typeof(&bar) barPtr = &bar;
10
11 int baz() {
12 return barPtr();
13 }