]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/weak_dylib/data.c
ld64-127.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / weak_dylib / data.c
1
2 #include "foo.h"
3 #include "bar.h"
4
5 void* pfoo4 = &foo4;
6 void* pfoo2 = &foo2;
7
8 void* pbar2 = &bar2;
9 void* pbar1 = &bar1; // not weak
10
11 int main (void)
12 {
13 return 0;
14 }
15