| 171 | |
| 172 | |
| 173 | LUAI_FUNC void luaE_incCstack (lua_State *L) { |
| 174 | L->nCcalls++; |
| 175 | if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) |
| 176 | luaE_checkcstack(L); |
| 177 | } |
| 178 | |
| 179 | |
| 180 | static void stack_init (lua_State *L1, lua_State *L) { |
no test coverage detected