lua

A copy of the Lua development repository
Log | Files | Refs | README

commit cc02b4729bf56a1b95a96841bad7b3570d98d3d6
parent 2bb3830fc1ddbab00bf7b7785a27794fbe7be5f9
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu,  1 Aug 1996 11:55:13 -0300

new mod implementation (more portable).

Diffstat:
Mmathlib.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mathlib.c b/mathlib.c @@ -3,7 +3,7 @@ ** Mathematics library to LUA */ -char *rcs_mathlib="$Id: mathlib.c,v 1.16 1996/04/25 14:10:00 roberto Exp roberto $"; +char *rcs_mathlib="$Id: mathlib.c,v 1.17 1996/04/30 21:13:55 roberto Exp roberto $"; #include <stdlib.h> #include <math.h> @@ -92,9 +92,9 @@ static void math_floor (void) static void math_mod (void) { - int d1 = (int)lua_check_number(1, "mod"); - int d2 = (int)lua_check_number(2, "mod"); - lua_pushnumber (d1%d2); + float x = lua_check_number(1, "mod"); + float y = lua_check_number(2, "mod"); + lua_pushnumber(fmod(x, y)); }