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