dyld-750.5.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-intertwined.dtest / E.c
1 extern void a(const char*);
2
3 void e() { }
4
5
6 void __attribute__((constructor))
7 initE()
8 {
9 a("initE");
10 }
11
12
13