]> git.saurik.com Git - apple/dyld.git/blame_incremental - unit-tests/test-cases/weak-non-lazy/foo.c
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / weak-non-lazy / foo.c
... / ...
CommitLineData
1
2
3
4
5
6int __attribute__((weak)) foo[] = { 1, 2, 3, 4 };
7int __attribute__((weak)) bar[] = { 10, 11, 12, 13 };
8
9int* getfoo()
10{
11 return foo;
12}
13
14
15