aboutsummaryrefslogtreecommitdiff
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
parent7948b8568e226f609871918a1d614450a1a565a7 (diff)
downloadlua-0f388193b3d00571126abadfd4dc9bf02ea17b24.tar.gz
lua-0f388193b3d00571126abadfd4dc9bf02ea17b24.tar.bz2
lua-0f388193b3d00571126abadfd4dc9bf02ea17b24.zip
'lUA' -> 'LUA'
-rw-r--r--loslib.c4
-rw-r--r--luaconf.h4
2 files changed, 4 insertions, 4 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)
diff --git a/luaconf.h b/luaconf.h
index 166b714e..1ab2ec18 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.167 2011/11/25 12:52:27 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.168 2011/11/29 17:15:42 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*/
@@ -70,7 +70,7 @@
70#define LUA_USE_ISATTY 70#define LUA_USE_ISATTY
71#define LUA_USE_POPEN 71#define LUA_USE_POPEN
72#define LUA_USE_ULONGJMP 72#define LUA_USE_ULONGJMP
73#define lUA_USE_GMTIME_R 73#define LUA_USE_GMTIME_R
74#endif 74#endif
75 75
76 76