diff options
author | Lua Team <team@lua.org> | 2008-01-18 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2008-01-18 12:00:00 +0000 |
commit | 5065c5cce2d4c35d65319fede6b8eddc410fb846 (patch) | |
tree | 127eee020245a47128184a35cb78059a26d1770f /src/loslib.c | |
parent | b2874e1bcdc4d4a56d8a232a88d5e17c6a9826f5 (diff) | |
download | lua-github-5.1.3-rc2.tar.gz |
Lua 5.1.3-rc25.1.3-rc2
Diffstat (limited to 'src/loslib.c')
-rw-r--r-- | src/loslib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/loslib.c b/src/loslib.c index be6e4e80..da06a572 100644 --- a/src/loslib.c +++ b/src/loslib.c @@ -1,5 +1,5 @@ /* -** $Id: loslib.c,v 1.19.1.2 2007/12/28 14:58:43 roberto Exp $ +** $Id: loslib.c,v 1.19.1.3 2008/01/18 16:38:18 roberto 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[] = { |