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