#include static void _init_plugin(Lua * L) { LoadLuaLibs(L); } extern "C" { __attribute__ ((weak)) void init_plugin(Lua * L) { _init_plugin(L); } void lualibs_init(Lua * L) { _init_plugin(L); } }