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