aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
Diffstat (limited to 'loslib.c')
-rw-r--r--loslib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loslib.c b/loslib.c
index b9f234f1..f788d1ac 100644
--- a/loslib.c
+++ b/loslib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loslib.c,v 1.36 2011/11/29 15:55:51 roberto Exp roberto $ 2** $Id: loslib.c,v 1.37 2011/11/29 17:15:42 roberto Exp roberto $
3** Standard Operating System library 3** Standard Operating System library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -62,7 +62,7 @@
62** By default, Lua uses gmtime/localtime, except when POSIX is available, 62** By default, Lua uses gmtime/localtime, except when POSIX is available,
63** where it uses gmtime_r/localtime_r 63** where it uses gmtime_r/localtime_r
64*/ 64*/
65#if defined(lUA_USE_GMTIME_R) 65#if defined(LUA_USE_GMTIME_R)
66 66
67#define l_gmtime(t,r) gmtime_r(t,r) 67#define l_gmtime(t,r) gmtime_r(t,r)
68#define l_localtime(t,r) localtime_r(t,r) 68#define l_localtime(t,r) localtime_r(t,r)