From 4a57b1315c07cfe6c00b8add20f82bcfb977cf90 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 3 Apr 2000 13:44:47 +0000 Subject: [PATCH] [project @ 2000-04-03 13:44:47 by simonmar] call __init_PrelMain instead of __init_Main. --- ghc/rts/Main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/rts/Main.c b/ghc/rts/Main.c index f911304..04e9b2b 100644 --- a/ghc/rts/Main.c +++ b/ghc/rts/Main.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Main.c,v 1.20 2000/03/31 03:09:36 hwloidl Exp $ + * $Id: Main.c,v 1.21 2000/04/03 13:44:47 simonmar Exp $ * * (c) The GHC Team 1998-2000 * @@ -38,7 +38,7 @@ # include #endif -EXTFUN(__init_Main); +EXTFUN(__init_PrelMain); /* Hack: we assume that we're building a batch-mode system unless * INTERPRETER is set @@ -50,7 +50,7 @@ int main(int argc, char *argv[]) SchedulerStatus status; /* all GranSim/GUM init is done in startupHaskell; sets IAmMainThread! */ - startupHaskell(argc,argv,__init_Main); + startupHaskell(argc,argv,__init_PrelMain); /* kick off the computation by creating the main thread with a pointer to mainIO_closure representing the computation of the overall program; -- 1.7.10.4