| 89 | } |
| 90 | |
| 91 | static int math_fmod (lua_State *L) { |
| 92 | lua_pushnumber(L, fmod(luaL_checknumber(L, 1), luaL_checknumber(L, 2))); |
| 93 | return 1; |
| 94 | } |
| 95 | |
| 96 | static int math_modf (lua_State *L) { |
| 97 | double ip; |
nothing calls this directly
no test coverage detected