| 29 | } |
| 30 | |
| 31 | static int math_sin (lua_State *L) { |
| 32 | lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1))); |
| 33 | return 1; |
| 34 | } |
| 35 | |
| 36 | static int math_sinh (lua_State *L) { |
| 37 | lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected