dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / kext-weak-bind-chained / foo.c
1
2 __attribute__((weak))
3 int weakValue = 0;
4
5 int foo() {
6 return weakValue;
7 }