From c8d6cb01365780367f949a94b29bb3f043744c0e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 5 Feb 2015 15:15:33 -0200 Subject: macros 'luai_num*' (for float arithmetic operations) moved to llimits.h. --- lobject.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index a3cc619f..60d1f3d9 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.100 2014/11/21 12:15:57 roberto Exp roberto $ +** $Id: lobject.c,v 2.101 2014/12/26 14:43:45 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -10,6 +10,7 @@ #include "lprefix.h" +#include #include #include #include @@ -174,8 +175,6 @@ static int isneg (const char **s) { */ #if !defined(lua_strx2number) -#include - /* maximum number of significant digits to read (to avoid overflows even with single floats) */ #define MAXSIGDIG 30 -- cgit v1.2.3-55-g6feb