dyld-733.8.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-intertwined.dtest / B.c
1 extern void c(const char*);
2
3 void b() { }
4
5 void __attribute__((constructor))
6 initB()
7 {
8 c("initB");
9 }
10
11