diff options
author | pixel <pixel> | 2008-02-17 00:35:20 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-02-17 00:35:20 +0000 |
commit | 658b29261ca0a68f1c5f7f3c3efa20ab56a543b6 (patch) | |
tree | e3caffa9a9ed1d80e1f8e23d8e848176d5f08413 /lib/lua/src/LuaLib/loslib.c | |
parent | 546a2ad1f72410fd042625cd44d192804e3ea2d7 (diff) |
Upgrading to Lua 5.1.3
Diffstat (limited to 'lib/lua/src/LuaLib/loslib.c')
-rw-r--r-- | lib/lua/src/LuaLib/loslib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/lua/src/LuaLib/loslib.c b/lib/lua/src/LuaLib/loslib.c index 11d665e..4592be1 100644 --- a/lib/lua/src/LuaLib/loslib.c +++ b/lib/lua/src/LuaLib/loslib.c @@ -1,5 +1,5 @@ /* -** $Id: loslib.c,v 1.1 2007-07-27 15:47:33 pixel Exp $ +** $Id: loslib.c,v 1.2 2008-02-17 00:35:21 pixel Exp $ ** Standard Operating System library ** See Copyright Notice in lua.h */ @@ -215,7 +215,6 @@ static int os_setlocale (lua_State *L) { static int os_exit (lua_State *L) { exit(luaL_optint(L, 1, EXIT_SUCCESS)); - return 0; /* to avoid warnings */ } static const luaL_Reg syslib[] = { |