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