| 10490 | #if defined(LUA_COMPAT_GETN) |
| 10491 | |
| 10492 | static int checkint (lua_State *L, int topop) { |
| 10493 | int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1; |
| 10494 | lua_pop(L, topop); |
| 10495 | return n; |
| 10496 | } |
| 10497 | |
| 10498 | |
| 10499 | static void getsizes (lua_State *L) { |
no test coverage detected