]> git.saurik.com Git - apple/dyld.git/blob - testing/test-cases/dlopen-intertwined.dtest/F.c
dyld-750.6.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-intertwined.dtest / F.c
1 extern void d(const char*);
2
3 void f() { }
4
5 void __attribute__((constructor))
6 initF()
7 {
8 d("initF");
9 }
10
11
12