#include <stdio.h>

int _dlso_init() __attribute__((constructor));

int _dlso_init() {
    printf("_dlso_init: 0x%x\n", &_dlso_init);
}
