aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 81007955..00fd1646 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.91 2014/10/25 11:50:46 roberto Exp roberto $ 2** $Id: lcode.c,v 2.92 2014/10/27 16:29:58 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -31,7 +31,7 @@
31#define MAXREGS 250 31#define MAXREGS 250
32 32
33 33
34/* test for x == -0 */ 34/* test for x == -0 ('signbit' needs 'math.h') */
35#if defined(signbit) 35#if defined(signbit)
36#define isminuszero(x) ((x) == 0.0 && signbit(x)) 36#define isminuszero(x) ((x) == 0.0 && signbit(x))
37#else 37#else