From cae7e8ce5c4f627277e1c01bcac22b523ede857c Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 14 Jul 1999 13:38:27 +0000 Subject: [PATCH] [project @ 1999-07-14 13:38:27 by simonmar] use shutdownHaskellAndExit(). --- ghc/rts/Main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ghc/rts/Main.c b/ghc/rts/Main.c index 7c16989..6ed8ac2 100644 --- a/ghc/rts/Main.c +++ b/ghc/rts/Main.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Main.c,v 1.9 1999/07/06 15:05:49 sof Exp $ + * $Id: Main.c,v 1.10 1999/07/14 13:38:27 simonmar Exp $ * * (c) The GHC Team 1998-1999 * @@ -77,8 +77,7 @@ int main(int argc, char *argv[]) case Interrupted: /* carry on */ } - shutdownHaskell(); - stg_exit(EXIT_SUCCESS); + shutdownHaskellAndExit(EXIT_SUCCESS); } # endif /* BATCH_MODE */ -- 1.7.10.4