dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / hello-world-pageablekc / bar.c
1
2 int x = 0;
3 int *p = &x;
4
5 extern int foo();
6
7 int bar() {
8 return foo() + *p;
9 }