Loading...
1
2
3
4
5
6
7
extern void checkInitOrder(int expected);

__attribute__((constructor))
static void myInit()
{
    checkInitOrder(6);
}