]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/weak-external-reloc/foo.c
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / weak-external-reloc / foo.c
1
2
3
4
5
6 int __attribute__((weak)) foo[] = { 1, 2, 3, 4 };
7 int __attribute__((weak)) bar[] = { 10, 11, 12, 13 };
8
9 int* pfoo = &foo[2];
10