summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ghc/interpreter/backend.h12
-rw-r--r--ghc/interpreter/codegen.c12
-rw-r--r--ghc/interpreter/command.h13
-rw-r--r--ghc/interpreter/compiler.c13
-rw-r--r--ghc/interpreter/connect.h16
-rw-r--r--ghc/interpreter/derive.c12
-rw-r--r--ghc/interpreter/dynamic.c12
-rw-r--r--ghc/interpreter/errors.h13
-rw-r--r--ghc/interpreter/free.c12
-rw-r--r--ghc/interpreter/hugs.c13
-rw-r--r--ghc/interpreter/input.c13
-rw-r--r--ghc/interpreter/lift.c12
-rw-r--r--ghc/interpreter/link.c12
-rw-r--r--ghc/interpreter/machdep.c13
-rw-r--r--ghc/interpreter/optimise.c12
-rw-r--r--ghc/interpreter/output.c13
-rw-r--r--ghc/interpreter/preds.c13
-rw-r--r--ghc/interpreter/prelude.h12
-rw-r--r--ghc/interpreter/scc.c13
-rw-r--r--ghc/interpreter/static.c13
-rw-r--r--ghc/interpreter/stg.c12
-rw-r--r--ghc/interpreter/stgSubst.c12
-rw-r--r--ghc/interpreter/storage.c13
-rw-r--r--ghc/interpreter/storage.h13
-rw-r--r--ghc/interpreter/subst.c13
-rw-r--r--ghc/interpreter/subst.h13
-rw-r--r--ghc/interpreter/timer.c13
-rw-r--r--ghc/interpreter/translate.c12
-rw-r--r--ghc/interpreter/type.c13
29 files changed, 205 insertions, 163 deletions
diff --git a/ghc/interpreter/backend.h b/ghc/interpreter/backend.h
index 36e132cf6d..9df6b14743 100644
--- a/ghc/interpreter/backend.h
+++ b/ghc/interpreter/backend.h
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* STG syntax
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: backend.h,v $
- * $Revision: 1.4 $
- * $Date: 1999/04/27 10:06:47 $
+ * $Revision: 1.5 $
+ * $Date: 1999/10/15 21:41:02 $
* ------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
diff --git a/ghc/interpreter/codegen.c b/ghc/interpreter/codegen.c
index 2b87d57418..4926de4a44 100644
--- a/ghc/interpreter/codegen.c
+++ b/ghc/interpreter/codegen.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Code generator
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: codegen.c,v $
- * $Revision: 1.8 $
- * $Date: 1999/07/06 15:24:36 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:41:02 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/command.h b/ghc/interpreter/command.h
index b6a10187f9..912a80199a 100644
--- a/ghc/interpreter/command.h
+++ b/ghc/interpreter/command.h
@@ -1,14 +1,15 @@
/* --------------------------------------------------------------------------
* Interpreter command structure
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: command.h,v $
- * $Revision: 1.4 $
- * $Date: 1999/04/27 10:06:48 $
+ * $Revision: 1.5 $
+ * $Date: 1999/10/15 21:41:03 $
* ------------------------------------------------------------------------*/
typedef Int Command;
diff --git a/ghc/interpreter/compiler.c b/ghc/interpreter/compiler.c
index e3d2d4c887..c70d56c926 100644
--- a/ghc/interpreter/compiler.c
+++ b/ghc/interpreter/compiler.c
@@ -4,14 +4,15 @@
* `kernel' language, elimination of pattern matching and translation to
* super combinators (lambda lifting).
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: compiler.c,v $
- * $Revision: 1.8 $
- * $Date: 1999/07/06 15:24:36 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:41:03 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/connect.h b/ghc/interpreter/connect.h
index c2c782aee5..bbdc5b5ba0 100644
--- a/ghc/interpreter/connect.h
+++ b/ghc/interpreter/connect.h
@@ -1,14 +1,15 @@
/* --------------------------------------------------------------------------
* Connections between components of the Hugs system
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: connect.h,v $
- * $Revision: 1.8 $
- * $Date: 1999/10/15 11:02:09 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:41:04 $
* ------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
@@ -324,7 +325,8 @@ extern Bool broken; /* indicates interrupt received */
/* On Win32 we can use the registry to supplement info in environment
* variables.
*/
-#define USE_REGISTRY (HAVE_WINDOWS_H && !__MSDOS__)
+/* AJG: Commented out for now for development */
+/* #define USE_REGISTRY (HAVE_WINDOWS_H && !__MSDOS__) */
#ifdef USE_REGISTRY
Bool writeRegString Args((String var, String val));
diff --git a/ghc/interpreter/derive.c b/ghc/interpreter/derive.c
index 26f26ec55c..1efe760b33 100644
--- a/ghc/interpreter/derive.c
+++ b/ghc/interpreter/derive.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Deriving
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: derive.c,v $
- * $Revision: 1.6 $
- * $Date: 1999/04/27 10:06:50 $
+ * $Revision: 1.7 $
+ * $Date: 1999/10/15 21:41:04 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/dynamic.c b/ghc/interpreter/dynamic.c
index be6fa5b53e..3718c443e5 100644
--- a/ghc/interpreter/dynamic.c
+++ b/ghc/interpreter/dynamic.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Dynamic loading (of .dll or .so files) for Hugs
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: dynamic.c,v $
- * $Revision: 1.6 $
- * $Date: 1999/10/15 19:11:54 $
+ * $Revision: 1.7 $
+ * $Date: 1999/10/15 21:41:05 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/errors.h b/ghc/interpreter/errors.h
index 98bb6cac88..c4068deb52 100644
--- a/ghc/interpreter/errors.h
+++ b/ghc/interpreter/errors.h
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Error handling support functions
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: errors.h,v $
- * $Revision: 1.3 $
- * $Date: 1999/02/03 17:08:28 $
+ * $Revision: 1.4 $
+ * $Date: 1999/10/15 21:41:05 $
* ------------------------------------------------------------------------*/
extern Void internal Args((String)) HUGS_noreturn;
diff --git a/ghc/interpreter/free.c b/ghc/interpreter/free.c
index 18966d96d0..6830b19983 100644
--- a/ghc/interpreter/free.c
+++ b/ghc/interpreter/free.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Free variable analysis
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: free.c,v $
- * $Revision: 1.5 $
- * $Date: 1999/10/15 11:02:09 $
+ * $Revision: 1.6 $
+ * $Date: 1999/10/15 21:40:49 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/hugs.c b/ghc/interpreter/hugs.c
index cf5a99498a..4e4ff45c56 100644
--- a/ghc/interpreter/hugs.c
+++ b/ghc/interpreter/hugs.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Command interpreter
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: hugs.c,v $
- * $Revision: 1.11 $
- * $Date: 1999/10/15 11:02:10 $
+ * $Revision: 1.12 $
+ * $Date: 1999/10/15 21:40:49 $
* ------------------------------------------------------------------------*/
#include <setjmp.h>
diff --git a/ghc/interpreter/input.c b/ghc/interpreter/input.c
index a979f25adc..5bc6da5116 100644
--- a/ghc/interpreter/input.c
+++ b/ghc/interpreter/input.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Input functions, lexical analysis parsing etc...
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: input.c,v $
- * $Revision: 1.7 $
- * $Date: 1999/10/15 11:02:12 $
+ * $Revision: 1.8 $
+ * $Date: 1999/10/15 21:40:50 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/lift.c b/ghc/interpreter/lift.c
index 297d9fea5f..82544f48aa 100644
--- a/ghc/interpreter/lift.c
+++ b/ghc/interpreter/lift.c
@@ -5,13 +5,15 @@
* This is a very simple lambda lifter - it doesn't try to do Johnsson-style
* lambda lifting (yet).
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: lift.c,v $
- * $Revision: 1.5 $
- * $Date: 1999/04/27 10:06:54 $
+ * $Revision: 1.6 $
+ * $Date: 1999/10/15 21:40:51 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/link.c b/ghc/interpreter/link.c
index f5bfdfd3de..52bfcb8e86 100644
--- a/ghc/interpreter/link.c
+++ b/ghc/interpreter/link.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Load symbols required from the Prelude
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: link.c,v $
- * $Revision: 1.8 $
- * $Date: 1999/10/15 11:02:15 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:40:51 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/machdep.c b/ghc/interpreter/machdep.c
index 7bfa0d5092..56089a7c5b 100644
--- a/ghc/interpreter/machdep.c
+++ b/ghc/interpreter/machdep.c
@@ -6,14 +6,15 @@
* HaskellScript code and recursive directory search provided by
* Daan Leijen (leijen@fwi.uva.nl)
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: machdep.c,v $
- * $Revision: 1.7 $
- * $Date: 1999/10/11 12:15:12 $
+ * $Revision: 1.8 $
+ * $Date: 1999/10/15 21:40:52 $
* ------------------------------------------------------------------------*/
#ifdef HAVE_SIGNAL_H
diff --git a/ghc/interpreter/optimise.c b/ghc/interpreter/optimise.c
index e960cc53aa..7341076b0b 100644
--- a/ghc/interpreter/optimise.c
+++ b/ghc/interpreter/optimise.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Optimiser
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: optimise.c,v $
- * $Revision: 1.6 $
- * $Date: 1999/07/06 15:24:39 $
+ * $Revision: 1.7 $
+ * $Date: 1999/10/15 21:40:52 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/output.c b/ghc/interpreter/output.c
index dbd6cd124e..4a59efa7b2 100644
--- a/ghc/interpreter/output.c
+++ b/ghc/interpreter/output.c
@@ -3,14 +3,15 @@
* Unparse expressions and types - for use in error messages, type checker
* and for debugging.
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: output.c,v $
- * $Revision: 1.5 $
- * $Date: 1999/04/27 10:06:57 $
+ * $Revision: 1.6 $
+ * $Date: 1999/10/15 21:40:53 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/preds.c b/ghc/interpreter/preds.c
index 1dd37f15a5..c159bb2931 100644
--- a/ghc/interpreter/preds.c
+++ b/ghc/interpreter/preds.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Part of the type checker dealing with predicates and entailment
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: preds.c,v $
- * $Revision: 1.5 $
- * $Date: 1999/04/27 10:06:59 $
+ * $Revision: 1.6 $
+ * $Date: 1999/10/15 21:40:54 $
* ------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
diff --git a/ghc/interpreter/prelude.h b/ghc/interpreter/prelude.h
index 3d41bb1609..b83f284fec 100644
--- a/ghc/interpreter/prelude.h
+++ b/ghc/interpreter/prelude.h
@@ -3,13 +3,15 @@
* Basic data type definitions, prototypes and standard macros including
* machine dependent variations...
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: prelude.h,v $
- * $Revision: 1.4 $
- * $Date: 1999/10/15 19:11:55 $
+ * $Revision: 1.5 $
+ * $Date: 1999/10/15 21:40:54 $
* ------------------------------------------------------------------------*/
#include "config.h"
diff --git a/ghc/interpreter/scc.c b/ghc/interpreter/scc.c
index 0b418c3b8d..ba3b456afb 100644
--- a/ghc/interpreter/scc.c
+++ b/ghc/interpreter/scc.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Strongly connected components algorithm for static.c.
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: scc.c,v $
- * $Revision: 1.4 $
- * $Date: 1999/04/27 10:07:01 $
+ * $Revision: 1.5 $
+ * $Date: 1999/10/15 21:40:54 $
* ------------------------------------------------------------------------*/
#ifndef SCC_C
diff --git a/ghc/interpreter/static.c b/ghc/interpreter/static.c
index 38e179da88..47a91b97df 100644
--- a/ghc/interpreter/static.c
+++ b/ghc/interpreter/static.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Static Analysis for Hugs
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: static.c,v $
- * $Revision: 1.9 $
- * $Date: 1999/10/15 11:02:22 $
+ * $Revision: 1.10 $
+ * $Date: 1999/10/15 21:40:55 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/stg.c b/ghc/interpreter/stg.c
index fa85a23600..0b4dadc74a 100644
--- a/ghc/interpreter/stg.c
+++ b/ghc/interpreter/stg.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* STG syntax
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: stg.c,v $
- * $Revision: 1.6 $
- * $Date: 1999/04/27 10:07:04 $
+ * $Revision: 1.7 $
+ * $Date: 1999/10/15 21:40:57 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/stgSubst.c b/ghc/interpreter/stgSubst.c
index 8d6f34f6c5..83d70c0f9d 100644
--- a/ghc/interpreter/stgSubst.c
+++ b/ghc/interpreter/stgSubst.c
@@ -2,13 +2,15 @@
/* --------------------------------------------------------------------------
* Substitute variables in an expression
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: stgSubst.c,v $
- * $Revision: 1.4 $
- * $Date: 1999/04/27 10:07:04 $
+ * $Revision: 1.5 $
+ * $Date: 1999/10/15 21:40:57 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/storage.c b/ghc/interpreter/storage.c
index 2015905d98..f581fd1d69 100644
--- a/ghc/interpreter/storage.c
+++ b/ghc/interpreter/storage.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Primitives for manipulating global data structures
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: storage.c,v $
- * $Revision: 1.9 $
- * $Date: 1999/10/15 11:02:26 $
+ * $Revision: 1.10 $
+ * $Date: 1999/10/15 21:40:57 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/storage.h b/ghc/interpreter/storage.h
index a687577824..a3a5ce30fe 100644
--- a/ghc/interpreter/storage.h
+++ b/ghc/interpreter/storage.h
@@ -3,14 +3,15 @@
* Defines storage datatypes: Text, Name, Module, Tycon, Cell, List, Pair,
* Triple, ...
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: storage.h,v $
- * $Revision: 1.8 $
- * $Date: 1999/07/06 15:24:45 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:40:58 $
* ------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
diff --git a/ghc/interpreter/subst.c b/ghc/interpreter/subst.c
index c07738d8b8..e686924a6c 100644
--- a/ghc/interpreter/subst.c
+++ b/ghc/interpreter/subst.c
@@ -3,14 +3,15 @@
* Provides an implementation for the `current substitution' used during
* type and kind inference in both static analysis and type checking.
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: subst.c,v $
- * $Revision: 1.5 $
- * $Date: 1999/04/27 10:07:07 $
+ * $Revision: 1.6 $
+ * $Date: 1999/10/15 21:40:59 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/subst.h b/ghc/interpreter/subst.h
index 195b9261c1..9b4b8b351d 100644
--- a/ghc/interpreter/subst.h
+++ b/ghc/interpreter/subst.h
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* Definitions for substitution data structure and operations.
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: subst.h,v $
- * $Revision: 1.3 $
- * $Date: 1999/02/03 17:08:43 $
+ * $Revision: 1.4 $
+ * $Date: 1999/10/15 21:41:00 $
* ------------------------------------------------------------------------*/
typedef struct { /* Each type variable contains: */
diff --git a/ghc/interpreter/timer.c b/ghc/interpreter/timer.c
index fc2d407a10..dd067ac958 100644
--- a/ghc/interpreter/timer.c
+++ b/ghc/interpreter/timer.c
@@ -24,14 +24,15 @@
* optimizations, means that there are much more significant overheads than
* can be accounted for by small variations in Hugs code.
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: timer.c,v $
- * $Revision: 1.3 $
- * $Date: 1999/02/03 17:08:43 $
+ * $Revision: 1.4 $
+ * $Date: 1999/10/15 21:41:00 $
* ------------------------------------------------------------------------*/
diff --git a/ghc/interpreter/translate.c b/ghc/interpreter/translate.c
index 8c11034a8f..23cad388d3 100644
--- a/ghc/interpreter/translate.c
+++ b/ghc/interpreter/translate.c
@@ -3,13 +3,15 @@
* Translator: generates stg code from output of pattern matching
* compiler.
*
- * Copyright (c) The University of Nottingham and Yale University, 1994-1997.
- * All rights reserved. See NOTICE for details and conditions of use etc...
- * Hugs version 1.4, December 1997
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: translate.c,v $
- * $Revision: 1.8 $
- * $Date: 1999/10/15 11:02:35 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:41:00 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
diff --git a/ghc/interpreter/type.c b/ghc/interpreter/type.c
index f5430d5a43..25c61797be 100644
--- a/ghc/interpreter/type.c
+++ b/ghc/interpreter/type.c
@@ -2,14 +2,15 @@
/* --------------------------------------------------------------------------
* This is the Hugs type checker
*
- * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale
- * Haskell Group 1994-99, and is distributed as Open Source software
- * under the Artistic License; see the file "Artistic" that is included
- * in the distribution for details.
+ * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
+ * Yale Haskell Group, and the Oregon Graduate Institute of Science and
+ * Technology, 1994-1999, All rights reserved. It is distributed as
+ * free software under the license in the file "License", which is
+ * included in the distribution.
*
* $RCSfile: type.c,v $
- * $Revision: 1.8 $
- * $Date: 1999/10/15 11:02:40 $
+ * $Revision: 1.9 $
+ * $Date: 1999/10/15 21:41:01 $
* ------------------------------------------------------------------------*/
#include "prelude.h"