dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-RTLD_LOCAL-coalesce.dtest / foo2.c
1
2
3 int __attribute__((weak)) coalA = 2;
4 int __attribute__((weak)) coalB = 2;
5 int __attribute__((weak)) coalC = 2;
6
7 int foo2_coalA()
8 {
9 return coalA;
10 }
11
12 int foo2_coalB()
13 {
14 return coalB;
15 }
16
17 int foo2_coalC()
18 {
19 return coalC;
20 }