| 474 | |
| 475 | |
| 476 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 477 | lua_lock(L); |
| 478 | setfltvalue(s2v(L->top), n); |
| 479 | api_incr_top(L); |
| 480 | lua_unlock(L); |
| 481 | } |
| 482 | |
| 483 | |
| 484 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected