| 39 | } |
| 40 | |
| 41 | static int math_cos (lua_State *L) { |
| 42 | lua_pushnumber(L, cos(luaL_checknumber(L, 1))); |
| 43 | return 1; |
| 44 | } |
| 45 | |
| 46 | static int math_cosh (lua_State *L) { |
| 47 | lua_pushnumber(L, cosh(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected