| 520 | |
| 521 | |
| 522 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 523 | lua_lock(L); |
| 524 | setfltvalue(s2v(L->top.p), n); |
| 525 | api_incr_top(L); |
| 526 | lua_unlock(L); |
| 527 | } |
| 528 | |
| 529 | |
| 530 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected