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