dyld-733.6.tar.gz
[apple/dyld.git] / testing / test-cases / weak-coalesce-unload.dtest / foo2.c
1
2 __attribute__((weak))
3 int foo() {
4 return 2;
5 }
6
7 void* fooPtr() {
8 return &foo;
9 }
10
11