| 49 | } |
| 50 | |
| 51 | static int math_tan (lua_State *L) { |
| 52 | lua_pushnumber(L, tan(luaL_checknumber(L, 1))); |
| 53 | return 1; |
| 54 | } |
| 55 | |
| 56 | static int math_tanh (lua_State *L) { |
| 57 | lua_pushnumber(L, tanh(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected