| 427 | |
| 428 | |
| 429 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 430 | lua_lock(L); |
| 431 | setnvalue(L->top, n); |
| 432 | api_incr_top(L); |
| 433 | lua_unlock(L); |
| 434 | } |
| 435 | |
| 436 | |
| 437 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected