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