| 34 | |
| 35 | |
| 36 | static int math_abs (lua_State *L) { |
| 37 | lua_pushnumber(L, fabs(luaL_checknumber(L, 1))); |
| 38 | return 1; |
| 39 | } |
| 40 | |
| 41 | static int math_sin (lua_State *L) { |
| 42 | lua_pushnumber(L, sin(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected