From ecd09ad02c4ef8e28eebef72cf6f99ab47059a5e Mon Sep 17 00:00:00 2001 From: andy Date: Fri, 15 Oct 1999 21:41:05 +0000 Subject: [PATCH] [project @ 1999-10-15 21:40:49 by andy] Updating all copyright messages to the same as Hugs98. --- ghc/interpreter/backend.h | 12 +++++++----- ghc/interpreter/codegen.c | 12 +++++++----- ghc/interpreter/command.h | 13 +++++++------ ghc/interpreter/compiler.c | 13 +++++++------ ghc/interpreter/connect.h | 16 +++++++++------- ghc/interpreter/derive.c | 12 +++++++----- ghc/interpreter/dynamic.c | 12 +++++++----- ghc/interpreter/errors.h | 13 +++++++------ ghc/interpreter/free.c | 12 +++++++----- ghc/interpreter/hugs.c | 13 +++++++------ ghc/interpreter/input.c | 13 +++++++------ ghc/interpreter/lift.c | 12 +++++++----- ghc/interpreter/link.c | 12 +++++++----- ghc/interpreter/machdep.c | 13 +++++++------ ghc/interpreter/optimise.c | 12 +++++++----- ghc/interpreter/output.c | 13 +++++++------ ghc/interpreter/preds.c | 13 +++++++------ ghc/interpreter/prelude.h | 12 +++++++----- ghc/interpreter/scc.c | 13 +++++++------ ghc/interpreter/static.c | 13 +++++++------ ghc/interpreter/stg.c | 12 +++++++----- ghc/interpreter/stgSubst.c | 12 +++++++----- ghc/interpreter/storage.c | 13 +++++++------ ghc/interpreter/storage.h | 13 +++++++------ ghc/interpreter/subst.c | 13 +++++++------ ghc/interpreter/subst.h | 13 +++++++------ ghc/interpreter/timer.c | 13 +++++++------ ghc/interpreter/translate.c | 12 +++++++----- ghc/interpreter/type.c | 13 +++++++------ 29 files changed, 205 insertions(+), 163 deletions(-) diff --git a/ghc/interpreter/backend.h b/ghc/interpreter/backend.h index 36e132c..9df6b14 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 2b87d57..4926de4 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 b6a1018..912a801 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 e3d2d4c..c70d56c 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 c2c782a..bbdc5b5 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 26f26ec..1efe760 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 be6fa5b..3718c44 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 98bb6ca..c4068de 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 18966d9..6830b19 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 cf5a994..4e4ff45 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 diff --git a/ghc/interpreter/input.c b/ghc/interpreter/input.c index a979f25..5bc6da5 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 297d9fe..82544f4 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 f5bfdfd..52bfcb8 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 7bfa0d5..56089a7 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 e960cc5..7341076 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 dbd6cd1..4a59efa 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 1dd37f1..c159bb2 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 3d41bb1..b83f284 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 0b418c3..ba3b456 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 38e179d..47a91b9 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 fa85a23..0b4dadc 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 8d6f34f..83d70c0 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 2015905..f581fd1 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 a687577..a3a5ce3 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 c07738d..e686924 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 195b926..9b4b8b3 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 fc2d407..dd067ac 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 8c11034..23cad38 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 f5430d5..25c6179 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" -- 1.7.10.4