diff --git a/callisto.c b/callisto.c index 03319cf..8d46b10 100644 --- a/callisto.c +++ b/callisto.c @@ -9,6 +9,13 @@ #include "callisto.h" +int luaopen_cl(lua_State *); +int luaopen_environ(lua_State *); +int luaopen_extra(lua_State *); +int luaopen_fs(lua_State *); +int luaopen_json(lua_State *); +int luaopen_process(lua_State *); + static const luaL_Reg loadedlibs[] = { {CALLISTO_CLLIBNAME, luaopen_cl}, {CALLISTO_ENVLIBNAME, luaopen_environ}, diff --git a/callisto.h b/callisto.h index f900042..6eeeb24 100644 --- a/callisto.h +++ b/callisto.h @@ -24,13 +24,6 @@ #define CALLISTO_ENVIRON "environ" -int luaopen_cl(lua_State *); -int luaopen_environ(lua_State *); -int luaopen_extra(lua_State *); -int luaopen_fs(lua_State *); -int luaopen_json(lua_State *); -int luaopen_process(lua_State *); - lua_State *callisto_newstate(void); void callisto_openall(lua_State *); void callisto_openlibs(lua_State *);