| 12529 | |
| 12530 | |
| 12531 | static int math_abs (lua_State *L) { |
| 12532 | lua_pushnumber(L, fabs(luaL_checknumber(L, 1))); |
| 12533 | return 1; |
| 12534 | } |
| 12535 | |
| 12536 | static int math_sin (lua_State *L) { |
| 12537 | lua_pushnumber(L, sin(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected