| 434 | |
| 435 | |
| 436 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 437 | lua_lock(L); |
| 438 | setnvalue(L->top, n); |
| 439 | api_incr_top(L); |
| 440 | lua_unlock(L); |
| 441 | } |
| 442 | |
| 443 | |
| 444 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected