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