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