From 0f388193b3d00571126abadfd4dc9bf02ea17b24 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Nov 2011 10:35:05 -0200 Subject: 'lUA' -> 'LUA' --- loslib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'loslib.c') diff --git a/loslib.c b/loslib.c index b9f234f1..f788d1ac 100644 --- a/loslib.c +++ b/loslib.c @@ -1,5 +1,5 @@ /* -** $Id: loslib.c,v 1.36 2011/11/29 15:55:51 roberto Exp roberto $ +** $Id: loslib.c,v 1.37 2011/11/29 17:15:42 roberto Exp roberto $ ** 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) -- cgit v1.2.3-55-g6feb