lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 98d0b79613fadec653baf18eab360e365b364481
parent e8f35fc4ff01c09b3529e25caeca047e3e1e3517
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 20 Sep 2002 10:32:34 -0300

EXIT_SUCCESS may be different from 0

Diffstat:
Mlua.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lua.c b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.103 2002/08/13 15:04:59 roberto Exp roberto $ +** $Id: lua.c,v 1.104 2002/09/05 19:45:42 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -337,7 +337,7 @@ static int handle_argv (char *argv[], int *interactive) { return file_input(filename); /* stop scanning arguments */ } } - return EXIT_SUCCESS; + return 0; }