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