| 449 | |
| 450 | |
| 451 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 452 | lua_lock(L); |
| 453 | setnvalue(L->top, n); |
| 454 | api_incr_top(L); |
| 455 | lua_unlock(L); |
| 456 | } |
| 457 | |
| 458 | |
| 459 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected