dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-RTLD_LOCAL-coalesce.dtest / foo1.c
1
2
3 int __attribute__((weak)) coalA = 1;
4 int __attribute__((weak)) coalB = 1;
5
6 int foo1_coalA()
7 {
8 return coalA;
9 }
10
11 int foo1_coalB()
12 {
13 return coalB;
14 }
15