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