| 459 | |
| 460 | |
| 461 | LUA_API void lua_pushnumber(lua_State *L, lua_Number n) { |
| 462 | lua_lock(L); |
| 463 | setfltvalue(L->top, n); |
| 464 | api_incr_top(L); |
| 465 | lua_unlock(L); |
| 466 | } |
| 467 | |
| 468 | |
| 469 | LUA_API void lua_pushinteger(lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected