[project @ 1999-10-15 21:40:49 by andy]
authorandy <unknown>
Fri, 15 Oct 1999 21:41:05 +0000 (21:41 +0000)
committerandy <unknown>
Fri, 15 Oct 1999 21:41:05 +0000 (21:41 +0000)
Updating all copyright messages to the same as Hugs98.

29 files changed:
ghc/interpreter/backend.h
ghc/interpreter/codegen.c
ghc/interpreter/command.h
ghc/interpreter/compiler.c
ghc/interpreter/connect.h
ghc/interpreter/derive.c
ghc/interpreter/dynamic.c
ghc/interpreter/errors.h
ghc/interpreter/free.c
ghc/interpreter/hugs.c
ghc/interpreter/input.c
ghc/interpreter/lift.c
ghc/interpreter/link.c
ghc/interpreter/machdep.c
ghc/interpreter/optimise.c
ghc/interpreter/output.c
ghc/interpreter/preds.c
ghc/interpreter/prelude.h
ghc/interpreter/scc.c
ghc/interpreter/static.c
ghc/interpreter/stg.c
ghc/interpreter/stgSubst.c
ghc/interpreter/storage.c
ghc/interpreter/storage.h
ghc/interpreter/subst.c
ghc/interpreter/subst.h
ghc/interpreter/timer.c
ghc/interpreter/translate.c
ghc/interpreter/type.c

index 36e132c..9df6b14 100644 (file)
@@ -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 $
  * ------------------------------------------------------------------------*/
 
 /* --------------------------------------------------------------------------
index 2b87d57..4926de4 100644 (file)
@@ -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"
index b6a1018..912a801 100644 (file)
@@ -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;
index e3d2d4c..c70d56c 100644 (file)
@@ -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"
index c2c782a..bbdc5b5 100644 (file)
@@ -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));
index 26f26ec..1efe760 100644 (file)
@@ -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"
index be6fa5b..3718c44 100644 (file)
@@ -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"
index 98bb6ca..c4068de 100644 (file)
@@ -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;
index 18966d9..6830b19 100644 (file)
@@ -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"
index cf5a994..4e4ff45 100644 (file)
@@ -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>
index a979f25..5bc6da5 100644 (file)
@@ -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"
index 297d9fe..82544f4 100644 (file)
@@ -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"
index f5bfdfd..52bfcb8 100644 (file)
@@ -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"
index 7bfa0d5..56089a7 100644 (file)
@@ -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
index e960cc5..7341076 100644 (file)
@@ -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"
index dbd6cd1..4a59efa 100644 (file)
@@ -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"
index 1dd37f1..c159bb2 100644 (file)
@@ -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 $
  * ------------------------------------------------------------------------*/
 
 /* --------------------------------------------------------------------------
index 3d41bb1..b83f284 100644 (file)
@@ -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"
index 0b418c3..ba3b456 100644 (file)
@@ -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
index 38e179d..47a91b9 100644 (file)
@@ -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"
index fa85a23..0b4dadc 100644 (file)
@@ -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"
index 8d6f34f..83d70c0 100644 (file)
@@ -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"
index 2015905..f581fd1 100644 (file)
@@ -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"
index a687577..a3a5ce3 100644 (file)
@@ -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 $
  * ------------------------------------------------------------------------*/
 
 /* --------------------------------------------------------------------------
index c07738d..e686924 100644 (file)
@@ -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"
index 195b926..9b4b8b3 100644 (file)
@@ -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:    */
index fc2d407..dd067ac 100644 (file)
  * 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 $
  * ------------------------------------------------------------------------*/
 
 
index 8c11034..23cad38 100644 (file)
@@ -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"
index f5430d5..25c6179 100644 (file)
@@ -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"