#include static void _init_plugin(Lua * L) { luaopen_opengl(L); L->pop(); } extern "C" { __attribute__ ((weak)) void init_plugin(Lua * L) { _init_plugin(L); } void luagl_init(Lua * L) { _init_plugin(L); } }