diff --git a/luaiconv.c b/luaiconv.c index 1ce1b58..53827ed 100644 --- a/luaiconv.c +++ b/luaiconv.c @@ -43,8 +43,6 @@ #define ERROR_UNKNOWN 4 - - /* Table assumed on top */ #define tblseticons(L, c, v) \ lua_pushliteral(L, c); \ @@ -53,8 +51,6 @@ - - static void push_iconv_t(lua_State *L, iconv_t cd) { lua_boxpointer(L, cd); @@ -77,8 +73,6 @@ static iconv_t get_iconv_t(lua_State *L, int i) } - - static int Liconv_open(lua_State *L) { const char *tocode = getstring(L, 1); @@ -167,12 +161,6 @@ static int Liconv_close(lua_State *L) return 1; } - - - - - - static const luaL_reg inconvFuncs[] = {