summaryrefslogtreecommitdiff
path: root/src/loslib.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2011-11-30 12:00:00 +0000
committerrepogen <>2011-11-30 12:00:00 +0000
commited0f7cc8d3f96dce4dac98bc395506f0513a332c (patch)
tree74d1d70594793be2284559b22c68cc0355007379 /src/loslib.c
parentac1beaea25f1fec341e1edb168c63ac7131a6bdd (diff)
downloadlua-github-ed0f7cc8d3f96dce4dac98bc395506f0513a332c.tar.gz
Lua 5.2.0-rc45.2.0-rc4
Diffstat (limited to 'src/loslib.c')
-rw-r--r--src/loslib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/loslib.c b/src/loslib.c
index 69d33e3a..881667da 100644
--- a/src/loslib.c
+++ b/src/loslib.c
@@ -1,5 +1,5 @@
/*
-** $Id: loslib.c,v 1.37 2011/11/29 17:15:42 roberto Exp $
+** $Id: loslib.c,v 1.38 2011/11/30 12:35:05 roberto Exp $
** Standard Operating System library
** See Copyright Notice in lua.h
*/
@@ -62,7 +62,7 @@
** By default, Lua uses gmtime/localtime, except when POSIX is available,
** where it uses gmtime_r/localtime_r
*/
-#if defined(lUA_USE_GMTIME_R)
+#if defined(LUA_USE_GMTIME_R)
#define l_gmtime(t,r) gmtime_r(t,r)
#define l_localtime(t,r) localtime_r(t,r)