diff options
author | simonmar <unknown> | 1999-11-26 16:26:32 +0000 |
---|---|---|
committer | simonmar <unknown> | 1999-11-26 16:26:32 +0000 |
commit | ef33ed94129ee17b577add392e04619ec1f53800 (patch) | |
tree | c01d5c1787727974b076884c79ea5aabd18f07d8 | |
parent | f689ae053903e329575df22990e97c8d5cc54717 (diff) | |
download | haskell-ef33ed94129ee17b577add392e04619ec1f53800.tar.gz |
[project @ 1999-11-26 16:26:32 by simonmar]
rename error.h to stgerror.h
-rw-r--r-- | ghc/lib/std/Makefile | 4 | ||||
-rw-r--r-- | ghc/lib/std/PrelIOBase.lhs | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 83d790e875..9348784607 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -25,11 +25,7 @@ HC = $(GHC) # LIBRARY = libHS$(_way).a -HS_SRCS = $(wildcard *.lhs) -HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o) LIBOBJS = $(HS_OBJS) -HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) PrelGHC.$(way_)hi - #----------------------------------------------------------------------------- # Setting the GHC compile options diff --git a/ghc/lib/std/PrelIOBase.lhs b/ghc/lib/std/PrelIOBase.lhs index 1dd7d76068..bf7a64f526 100644 --- a/ghc/lib/std/PrelIOBase.lhs +++ b/ghc/lib/std/PrelIOBase.lhs @@ -1,5 +1,5 @@ % ----------------------------------------------------------------------------- -% $Id: PrelIOBase.lhs,v 1.14 1999/11/22 15:55:51 simonmar Exp $ +% $Id: PrelIOBase.lhs,v 1.15 1999/11/26 16:26:32 simonmar Exp $ % % (c) The AQUA Project, Glasgow University, 1994-1998 % @@ -11,7 +11,7 @@ concretely; the @IO@ module itself exports abstractly. \begin{code} {-# OPTIONS -fno-implicit-prelude -#include "cbits/stgio.h" #-} -#include "cbits/error.h" +#include "cbits/stgerror.h" #ifndef __HUGS__ /* Hugs just includes this in PreludeBuiltin so no header needed */ module PrelIOBase where |