mirror of https://github.com/rusefi/lua.git
'lUA' -> 'LUA'
This commit is contained in:
parent
7948b8568e
commit
0f388193b3
4
loslib.c
4
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
|
** Standard Operating System library
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
** By default, Lua uses gmtime/localtime, except when POSIX is available,
|
** By default, Lua uses gmtime/localtime, except when POSIX is available,
|
||||||
** where it uses gmtime_r/localtime_r
|
** 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_gmtime(t,r) gmtime_r(t,r)
|
||||||
#define l_localtime(t,r) localtime_r(t,r)
|
#define l_localtime(t,r) localtime_r(t,r)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: luaconf.h,v 1.167 2011/11/25 12:52:27 roberto Exp roberto $
|
** $Id: luaconf.h,v 1.168 2011/11/29 17:15:42 roberto Exp roberto $
|
||||||
** Configuration file for Lua
|
** Configuration file for Lua
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
#define LUA_USE_ISATTY
|
#define LUA_USE_ISATTY
|
||||||
#define LUA_USE_POPEN
|
#define LUA_USE_POPEN
|
||||||
#define LUA_USE_ULONGJMP
|
#define LUA_USE_ULONGJMP
|
||||||
#define lUA_USE_GMTIME_R
|
#define LUA_USE_GMTIME_R
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue