| 54 | } |
| 55 | |
| 56 | static int math_tanh (lua_State *L) { |
| 57 | lua_pushnumber(L, tanh(luaL_checknumber(L, 1))); |
| 58 | return 1; |
| 59 | } |
| 60 | |
| 61 | static int math_asin (lua_State *L) { |
| 62 | lua_pushnumber(L, asin(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected