From 98d0b79613fadec653baf18eab360e365b364481 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 20 Sep 2002 10:32:56 -0300 Subject: [PATCH] EXIT_SUCCESS may be different from 0 --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua.c b/lua.c index eed8be8a..fdda8be8 100644 --- 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; }