]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/upward-dylib-init-order/b.c
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / upward-dylib-init-order / b.c
1 #include <stdio.h>
2 #include "common.h"
3
4
5
6 static __attribute__((constructor)) void myInit()
7 {
8 setB();
9 //fprintf(stderr, "init b\n");
10 }