#include "core.h" void init_lib_core() { static int init = 0; if (init) return; init_rt(); init += 1; Assert(init == 1); }