| 170 | |
| 171 | |
| 172 | static int math_ult (lua_State *L) { |
| 173 | lua_Integer a = luaL_checkinteger(L, 1); |
| 174 | lua_Integer b = luaL_checkinteger(L, 2); |
| 175 | lua_pushboolean(L, (lua_Unsigned)a < (lua_Unsigned)b); |
| 176 | return 1; |
| 177 | } |
| 178 | |
| 179 | static int math_log (lua_State *L) { |
| 180 | lua_Number x = luaL_checknumber(L, 1); |
nothing calls this directly
no test coverage detected