aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luaconf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 332cfdd6..57a4ac29 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.232 2014/12/12 11:49:32 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.233 2014/12/13 17:57:00 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*/
@@ -55,6 +55,7 @@
55#if defined(LUA_USE_WINDOWS) 55#if defined(LUA_USE_WINDOWS)
56#define LUA_DL_DLL /* enable support for DLL */ 56#define LUA_DL_DLL /* enable support for DLL */
57#define LUA_USE_C89 /* broadly, Windows is C89 */ 57#define LUA_USE_C89 /* broadly, Windows is C89 */
58#define LUA_USE_I64 /* use Windows-specifc type for 64-bit integers */
58#endif 59#endif
59 60
60 61
@@ -565,7 +566,7 @@
565 566
566#elif defined(LUA_INT_LONGLONG) /* }{ long long */ 567#elif defined(LUA_INT_LONGLONG) /* }{ long long */
567 568
568#if defined(LUA_USE_WINDOWS) /* { */ 569#if defined(LUA_USE_I64) /* { */
569 570
570#define LUA_INTEGER __int64 571#define LUA_INTEGER __int64
571#define LUA_INTEGER_FRMLEN "I64" 572#define LUA_INTEGER_FRMLEN "I64"