| 12534 | } |
| 12535 | |
| 12536 | static int math_sin (lua_State *L) { |
| 12537 | lua_pushnumber(L, sin(luaL_checknumber(L, 1))); |
| 12538 | return 1; |
| 12539 | } |
| 12540 | |
| 12541 | static int math_sinh (lua_State *L) { |
| 12542 | lua_pushnumber(L, sinh(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected