| 326 | #if defined(LUA_COMPAT_GETN) |
| 327 | |
| 328 | static int checkint (lua_State *L, int topop) { |
| 329 | int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1; |
| 330 | lua_pop(L, topop); |
| 331 | return n; |
| 332 | } |
| 333 | |
| 334 | |
| 335 | static void getsizes (lua_State *L) { |
no test coverage detected