| 64 | } |
| 65 | |
| 66 | static int math_acos (lua_State *L) { |
| 67 | lua_pushnumber(L, l_mathop(acos)(luaL_checknumber(L, 1))); |
| 68 | return 1; |
| 69 | } |
| 70 | |
| 71 | static int math_atan (lua_State *L) { |
| 72 | lua_pushnumber(L, l_mathop(atan)(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected