| 24 | |
| 25 | |
| 26 | static int math_abs (lua_State *L) { |
| 27 | lua_pushnumber(L, fabs(luaL_checknumber(L, 1))); |
| 28 | return 1; |
| 29 | } |
| 30 | |
| 31 | static int math_sin (lua_State *L) { |
| 32 | lua_pushnumber(L, sin(luaL_checknumber(L, 1))); |
nothing calls this directly
no test coverage detected