| 503 | |
| 504 | |
| 505 | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
| 506 | lua_lock(L); |
| 507 | setfltvalue(s2v(L->top.p), n); |
| 508 | api_incr_top(L); |
| 509 | lua_unlock(L); |
| 510 | } |
| 511 | |
| 512 | |
| 513 | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) { |
no outgoing calls
no test coverage detected