| 278 | #if defined(LUA_COMPAT_GETN) |
| 279 | |
| 280 | static int checkint (lua_State *L, int topop) { |
| 281 | int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1; |
| 282 | lua_pop(L, topop); |
| 283 | return n; |
| 284 | } |
| 285 | |
| 286 | |
| 287 | static void getsizes (lua_State *L) { |
no test coverage detected