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