aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-30 10:35:05 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-30 10:35:05 -0200
commit0f388193b3d00571126abadfd4dc9bf02ea17b24 (patch)
tree755b5630159a557410dcdccedcb177dde7ee1a44 /loslib.c
parent7948b8568e226f609871918a1d614450a1a565a7 (diff)
downloadlua-0f388193b3d00571126abadfd4dc9bf02ea17b24.tar.gz
lua-0f388193b3d00571126abadfd4dc9bf02ea17b24.tar.bz2
lua-0f388193b3d00571126abadfd4dc9bf02ea17b24.zip
'lUA' -> 'LUA'
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)