aboutsummaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-31 13:54:06 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-31 13:54:06 -0200
commit1a69a3eceab706f3b83abd41507aba1d969aaf4f (patch)
tree5387c20fd986b5fd356892cf4983aaa28ce572d2 /liolib.c
parentdcfc3c9405fac62c5808c33e1b4c82c45c5b2218 (diff)
downloadlua-1a69a3eceab706f3b83abd41507aba1d969aaf4f.tar.gz
lua-1a69a3eceab706f3b83abd41507aba1d969aaf4f.tar.bz2
lua-1a69a3eceab706f3b83abd41507aba1d969aaf4f.zip
LUA_WIN -> LUA_USE_WINDOWS
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/liolib.c b/liolib.c
index 9aa71b68..0927d7c0 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.136 2014/10/22 16:55:57 roberto Exp roberto $ 2** $Id: liolib.c,v 2.137 2014/10/25 11:50:46 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -60,7 +60,7 @@
60#define l_popen(L,c,m) (fflush(NULL), popen(c,m)) 60#define l_popen(L,c,m) (fflush(NULL), popen(c,m))
61#define l_pclose(L,file) (pclose(file)) 61#define l_pclose(L,file) (pclose(file))
62 62
63#elif defined(LUA_WIN) /* }{ */ 63#elif defined(LUA_USE_WINDOWS) /* }{ */
64 64
65#define l_popen(L,c,m) (_popen(c,m)) 65#define l_popen(L,c,m) (_popen(c,m))
66#define l_pclose(L,file) (_pclose(file)) 66#define l_pclose(L,file) (_pclose(file))
@@ -112,7 +112,7 @@
112#define l_ftell(f) ftello(f) 112#define l_ftell(f) ftello(f)
113#define l_seeknum off_t 113#define l_seeknum off_t
114 114
115#elif defined(LUA_WIN) && !defined(_CRTIMP_TYPEINFO) \ 115#elif defined(LUA_USE_WINDOWS) && !defined(_CRTIMP_TYPEINFO) \
116 && defined(_MSC_VER) && (_MSC_VER >= 1400) /* }{ */ 116 && defined(_MSC_VER) && (_MSC_VER >= 1400) /* }{ */
117 117
118/* Windows (but not DDK) and Visual C++ 2005 or higher */ 118/* Windows (but not DDK) and Visual C++ 2005 or higher */