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