| 74 | } |
| 75 | |
| 76 | static int math_atan2 (lua_State *L) { |
| 77 | lua_pushnumber(L, atan2(luaL_checknumber(L, 1), luaL_checknumber(L, 2))); |
| 78 | return 1; |
| 79 | } |
| 80 | |
| 81 | static int math_ceil (lua_State *L) { |
| 82 | lua_pushnumber(L, ceil(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected