| 44 | } |
| 45 | |
| 46 | static int math_sinh (lua_State *L) { |
| 47 | lua_pushnumber(L, sinh(luaL_checknumber(L, 1))); |
| 48 | return 1; |
| 49 | } |
| 50 | |
| 51 | static int math_cos (lua_State *L) { |
| 52 | lua_pushnumber(L, cos(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected