]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/dlopen-RTLD_LOCAL-weak/bar.c
dyld-360.19.tar.gz
[apple/dyld.git] / unit-tests / test-cases / dlopen-RTLD_LOCAL-weak / bar.c
1 int __attribute__((weak)) A[] = { 1, 2, 3, 4 };
2
3
4 int* getA() { return A; }
5