diff options
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[] = { |