]>
git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/weak-external-reloc-flat/foo.c
3 extern int bar_getfrob(int x
);
6 int __attribute__((weak
)) foo
[] = { 1, 2, 3, 4 };
7 int __attribute__((weak
)) bar
[] = { 10, 11, 12, 13 };
8 int __attribute__((weak
)) frob
[] = { 20, 21, 22, 23 };
13 return bar_getfrob(2);