aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-20 14:32:05 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-20 14:32:05 -0200
commitcfa84e123272acff178fe2e4cf5af7ec20e56572 (patch)
treea6f20d0945a7401db8b7569c227de0525c7e1503 /luaconf.h
parent0d31efb365e93cd983d63519f83b46c8898b92c4 (diff)
downloadlua-cfa84e123272acff178fe2e4cf5af7ec20e56572.tar.gz
lua-cfa84e123272acff178fe2e4cf5af7ec20e56572.tar.bz2
lua-cfa84e123272acff178fe2e4cf5af7ec20e56572.zip
does not use 'long long' when LUA_ANSI is set
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index e4769311..356e8cb4 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.217 2014/10/15 14:53:20 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.218 2014/10/17 16:28:21 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -44,7 +44,7 @@
44*/ 44*/
45/* #define LUA_32BITS */ 45/* #define LUA_32BITS */
46 46
47#if !defined(LUA_32BITS) 47#if !defined(LUA_32BITS) && !defined(LUA_ANSI)
48#define LUA_INT_LONGLONG 48#define LUA_INT_LONGLONG
49#define LUA_REAL_DOUBLE 49#define LUA_REAL_DOUBLE
50#else /* Lua 32 bits */ 50#else /* Lua 32 bits */