| 481 | |
| 482 | |
| 483 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
| 484 | lua_lock(L); |
| 485 | setnvalue(L->top, cast_num(n)); |
| 486 | api_incr_top(L); |
| 487 | lua_unlock(L); |
| 488 | } |
| 489 | |
| 490 | |
| 491 | LUA_API void lua_pushunsigned (lua_State *L, lua_Unsigned u) { |
no outgoing calls
no test coverage detected