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