From 08d6302bb0feb12cb11f81e83e1d4fcdb0554761 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Thu, 10 Oct 2002 00:23:39 +0200
Subject: [PATCH] More license work.

Rev: src/backend.cmod:1.28
Rev: src/builtin.cmod:1.93
Rev: src/iterators.cmod:1.29
Rev: src/modules/Gmp/mpf.cmod:1.11
Rev: src/modules/Gmp/mpq.cmod:1.12
Rev: src/modules/Math/transforms.cmod:1.7
Rev: src/peep.in:1.64
Rev: src/post_modules/GL/auto.c.in:1.22
Rev: src/post_modules/GLUT/auto.c.in:1.5
Rev: src/post_modules/SDL/SDL.cmod:1.5
Rev: src/post_modules/Shuffler/Shuffler.cmod:1.15
Rev: src/post_modules/Unicode/unicode_module.cmod:1.4
Rev: src/treeopt.in:1.69
---
 .gitattributes                               |  1 +
 src/backend.cmod                             |  4 +++-
 src/builtin.cmod                             | 10 +++++++---
 src/iterators.cmod                           |  4 +++-
 src/modules/Gmp/mpf.cmod                     |  6 ++++--
 src/modules/Gmp/mpq.cmod                     |  7 +++++--
 src/modules/Math/transforms.cmod             |  8 ++++++++
 src/peep.in                                  | 10 +++++-----
 src/post_modules/GL/auto.c.in                | 13 ++++---------
 src/post_modules/GLUT/auto.c.in              | 12 ++++--------
 src/post_modules/SDL/SDL.cmod                | 10 +++++++++-
 src/post_modules/Shuffler/Shuffler.cmod      | 10 +++++++++-
 src/post_modules/Unicode/unicode_module.cmod | 10 +++++++++-
 src/treeopt.in                               |  6 ++++--
 14 files changed, 75 insertions(+), 36 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index 1527212f7f..72675d3b7d 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -452,6 +452,7 @@ testfont binary
 /src/modules/Math/math_module.c foreign_ident
 /src/modules/Math/math_module.h foreign_ident
 /src/modules/Math/matrix_code.h foreign_ident
+/src/modules/Math/transforms.cmod foreign_ident
 /src/modules/Math/transforms.h foreign_ident
 /src/modules/Mird/Makefile.in foreign_ident
 /src/modules/Mird/acconfig.h foreign_ident
diff --git a/src/backend.cmod b/src/backend.cmod
index 12353fff4e..419908a7f9 100644
--- a/src/backend.cmod
+++ b/src/backend.cmod
@@ -2,10 +2,12 @@
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
+||| $Id: backend.cmod,v 1.28 2002/10/09 22:23:38 nilsson Exp $
 \*/
 /**/
+
 #include "global.h"
-RCSID("$Id: backend.cmod,v 1.27 2002/08/15 14:49:19 marcus Exp $");
+RCSID("$Id: backend.cmod,v 1.28 2002/10/09 22:23:38 nilsson Exp $");
 #include "fdlib.h"
 #include "backend.h"
 #include <errno.h>
diff --git a/src/builtin.cmod b/src/builtin.cmod
index 9ec381e28a..59b4e02c3a 100644
--- a/src/builtin.cmod
+++ b/src/builtin.cmod
@@ -1,6 +1,10 @@
-/* -*- c -*-
- * $Id: builtin.cmod,v 1.92 2002/10/03 17:23:38 mast Exp $
- */
+/*\ -*- c -*-
+||| This file is part of Pike. For copyright information see COPYRIGHT.
+||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+||| for more information.
+||| $Id: builtin.cmod,v 1.93 2002/10/09 22:23:38 nilsson Exp $
+\*/
+/**/
 
 #include "global.h"
 #include "interpret.h"
diff --git a/src/iterators.cmod b/src/iterators.cmod
index 45ba09c1eb..32af407758 100644
--- a/src/iterators.cmod
+++ b/src/iterators.cmod
@@ -2,10 +2,12 @@
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
+||| $Id: iterators.cmod,v 1.29 2002/10/09 22:23:38 nilsson Exp $
 \*/
 /**/
+
 #include "global.h"
-RCSID("$Id: iterators.cmod,v 1.28 2002/10/07 15:32:31 grubba Exp $");
+RCSID("$Id: iterators.cmod,v 1.29 2002/10/09 22:23:38 nilsson Exp $");
 #include "main.h"
 #include "object.h"
 #include "mapping.h"
diff --git a/src/modules/Gmp/mpf.cmod b/src/modules/Gmp/mpf.cmod
index a5a29a7d99..49e7b45689 100644
--- a/src/modules/Gmp/mpf.cmod
+++ b/src/modules/Gmp/mpf.cmod
@@ -1,11 +1,13 @@
-/*\
+/*\ -*- c -*-
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
+||| $Id: mpf.cmod,v 1.11 2002/10/09 22:23:39 nilsson Exp $
 \*/
 /**/
+
 #include "global.h"
-RCSID("$Id: mpf.cmod,v 1.10 2002/09/25 14:12:44 marcus Exp $");
+RCSID("$Id: mpf.cmod,v 1.11 2002/10/09 22:23:39 nilsson Exp $");
 #include "gmp_machine.h"
 
 #if defined(HAVE_GMP2_GMP_H) && defined(HAVE_LIBGMP2)
diff --git a/src/modules/Gmp/mpq.cmod b/src/modules/Gmp/mpq.cmod
index 00a828f1dc..378dbdefdc 100644
--- a/src/modules/Gmp/mpq.cmod
+++ b/src/modules/Gmp/mpq.cmod
@@ -1,10 +1,13 @@
-/*\
+/*\ -*- c -*-
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
+||| $Id: mpq.cmod,v 1.12 2002/10/09 22:23:39 nilsson Exp $
 \*/
+/**/
+
 #include "global.h"
-RCSID("$Id: mpq.cmod,v 1.11 2002/09/25 14:12:45 marcus Exp $");
+RCSID("$Id: mpq.cmod,v 1.12 2002/10/09 22:23:39 nilsson Exp $");
 #include "gmp_machine.h"
 
 #if defined(HAVE_GMP2_GMP_H) && defined(HAVE_LIBGMP2)
diff --git a/src/modules/Math/transforms.cmod b/src/modules/Math/transforms.cmod
index 45136bfa57..0c97e05161 100644
--- a/src/modules/Math/transforms.cmod
+++ b/src/modules/Math/transforms.cmod
@@ -1,3 +1,11 @@
+/*\ -*- c -*-
+||| This file is part of Pike. For copyright information see COPYRIGHT.
+||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+||| for more information.
+||| $Id: transforms.cmod,v 1.7 2002/10/09 22:23:39 nilsson Exp $
+\*/
+/**/
+
 #include "global.h"
 
 #include "interpret.h"
diff --git a/src/peep.in b/src/peep.in
index 8a0b869184..166cf2d447 100644
--- a/src/peep.in
+++ b/src/peep.in
@@ -1,8 +1,8 @@
-//
-// -*- C -*-
-//
-// $Id: peep.in,v 1.63 2002/09/24 09:10:53 grubba Exp $
-//
+// -*- c -*-
+// This file is part of Pike. For copyright information see COPYRIGHT.
+// Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+// for more information.
+// $Id: peep.in,v 1.64 2002/10/09 22:23:38 nilsson Exp $
 
 NOP :
 POP_N_ELEMS (0) : 
diff --git a/src/post_modules/GL/auto.c.in b/src/post_modules/GL/auto.c.in
index 6f81de14d3..6bd004be4d 100644
--- a/src/post_modules/GL/auto.c.in
+++ b/src/post_modules/GL/auto.c.in
@@ -1,21 +1,16 @@
-/*\
+/*\ -*- c -*-
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
-||| $Id: auto.c.in,v 1.21 2002/10/08 20:22:43 nilsson Exp $
+||| $Id: auto.c.in,v 1.22 2002/10/09 22:23:39 nilsson Exp $
 \*/
-
-/* -*- C -*-
- *
- * $Id: auto.c.in,v 1.21 2002/10/08 20:22:43 nilsson Exp $
- *
- */
+/**/
 
 #include "global.h"
 
 #include "config.h"
 
-RCSID("$Id: auto.c.in,v 1.21 2002/10/08 20:22:43 nilsson Exp $");
+RCSID("$Id: auto.c.in,v 1.22 2002/10/09 22:23:39 nilsson Exp $");
 #include "stralloc.h"
 #include "pike_macros.h"
 #include "object.h"
diff --git a/src/post_modules/GLUT/auto.c.in b/src/post_modules/GLUT/auto.c.in
index 028e63f0f4..4841a211ff 100644
--- a/src/post_modules/GLUT/auto.c.in
+++ b/src/post_modules/GLUT/auto.c.in
@@ -1,20 +1,16 @@
-/*\
+/*\ -*- c -*-
 ||| This file is part of Pike. For copyright information see COPYRIGHT.
 ||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 ||| for more information.
-||| $Id: auto.c.in,v 1.4 2002/10/08 20:22:44 nilsson Exp $
+||| $Id: auto.c.in,v 1.5 2002/10/09 22:23:39 nilsson Exp $
 \*/
-
-/*
- * $Id: auto.c.in,v 1.4 2002/10/08 20:22:44 nilsson Exp $
- *
- */
+/**/
 
 #include "global.h"
 
 #include "config.h"
 
-RCSID("$Id: auto.c.in,v 1.4 2002/10/08 20:22:44 nilsson Exp $");
+RCSID("$Id: auto.c.in,v 1.5 2002/10/09 22:23:39 nilsson Exp $");
 #include "stralloc.h"
 #include "pike_macros.h"
 #include "object.h"
diff --git a/src/post_modules/SDL/SDL.cmod b/src/post_modules/SDL/SDL.cmod
index 8689fa5db7..ddea5355d2 100644
--- a/src/post_modules/SDL/SDL.cmod
+++ b/src/post_modules/SDL/SDL.cmod
@@ -1,6 +1,14 @@
+/*\ -*- c -*-
+||| This file is part of Pike. For copyright information see COPYRIGHT.
+||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+||| for more information.
+||| $Id: SDL.cmod,v 1.5 2002/10/09 22:23:39 nilsson Exp $
+\*/
+/**/
+
 #include "global.h"
 #include "stralloc.h"
-RCSID("$Id: SDL.cmod,v 1.4 2002/06/25 20:49:33 per Exp $");
+RCSID("$Id: SDL.cmod,v 1.5 2002/10/09 22:23:39 nilsson Exp $");
 #include "pike_macros.h"
 #include "interpret.h"
 #include "program.h"
diff --git a/src/post_modules/Shuffler/Shuffler.cmod b/src/post_modules/Shuffler/Shuffler.cmod
index 85c40abe2e..05704428c8 100644
--- a/src/post_modules/Shuffler/Shuffler.cmod
+++ b/src/post_modules/Shuffler/Shuffler.cmod
@@ -1,6 +1,14 @@
+/*\ -*- c -*-
+||| This file is part of Pike. For copyright information see COPYRIGHT.
+||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+||| for more information.
+||| $Id: Shuffler.cmod,v 1.15 2002/10/09 22:23:39 nilsson Exp $
+\*/
+/**/
+
 #include "global.h"
 #include "stralloc.h"
-RCSID("$Id: Shuffler.cmod,v 1.14 2002/08/13 16:57:19 grubba Exp $");
+RCSID("$Id: Shuffler.cmod,v 1.15 2002/10/09 22:23:39 nilsson Exp $");
 #include "pike_macros.h"
 #include "interpret.h"
 #include "threads.h"
diff --git a/src/post_modules/Unicode/unicode_module.cmod b/src/post_modules/Unicode/unicode_module.cmod
index 924a49fa17..7792edba05 100644
--- a/src/post_modules/Unicode/unicode_module.cmod
+++ b/src/post_modules/Unicode/unicode_module.cmod
@@ -1,7 +1,15 @@
+/*\ -*- c -*-
+||| This file is part of Pike. For copyright information see COPYRIGHT.
+||| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+||| for more information.
+||| $Id: unicode_module.cmod,v 1.4 2002/10/09 22:23:39 nilsson Exp $
+\*/
+/**/
+
 #include "global.h"
 #include "stralloc.h"
 #include "global.h"
-RCSID("$Id: unicode_module.cmod,v 1.3 2001/11/13 00:28:04 nilsson Exp $");
+RCSID("$Id: unicode_module.cmod,v 1.4 2002/10/09 22:23:39 nilsson Exp $");
 #include "pike_macros.h"
 #include "interpret.h"
 #include "program.h"
diff --git a/src/treeopt.in b/src/treeopt.in
index d3f9b58f15..80b8beba3a 100644
--- a/src/treeopt.in
+++ b/src/treeopt.in
@@ -1,6 +1,8 @@
 // -*- c -*-
-//
-// $Id: treeopt.in,v 1.68 2002/03/02 18:47:39 mast Exp $
+// This file is part of Pike. For copyright information see COPYRIGHT.
+// Pike is distributed under GPL, LGPL and MPL. See the file COPYING
+// for more information.
+// $Id: treeopt.in,v 1.69 2002/10/09 22:23:38 nilsson Exp $
 //
 // The tree optimizer
 //
-- 
GitLab