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