| 79 | } |
| 80 | |
| 81 | static int math_ceil (lua_State *L) { |
| 82 | lua_pushnumber(L, ceil(luaL_checknumber(L, 1))); |
| 83 | return 1; |
| 84 | } |
| 85 | |
| 86 | static int math_floor (lua_State *L) { |
| 87 | lua_pushnumber(L, floor(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected