| 497 | |
| 498 | |
| 499 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 500 | lua_lock(L); |
| 501 | setfltvalue(s2v(L->top), n); |
| 502 | api_incr_top(L); |
| 503 | lua_unlock(L); |
| 504 | } |
| 505 | |
| 506 | |
| 507 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected