| 224 | |
| 225 | |
| 226 | static int math_ldexp (lua_State *L) { |
| 227 | lua_Number x = luaL_checknumber(L, 1); |
| 228 | int ep = (int)luaL_checkinteger(L, 2); |
| 229 | lua_pushnumber(L, l_mathop(ldexp)(x, ep)); |
| 230 | return 1; |
| 231 | } |
| 232 | |
| 233 | |
| 234 | static int math_min (lua_State *L) { |
nothing calls this directly
no test coverage detected