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