summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am4
-rw-r--r--lib/abitset.c6
-rw-r--r--lib/abitset.h4
-rw-r--r--lib/bbitset.h6
-rw-r--r--lib/bitset.c5
-rw-r--r--lib/bitset.h5
-rw-r--r--lib/bitset_stats.c5
-rw-r--r--lib/bitset_stats.h5
-rw-r--r--lib/bitsetv-print.c3
-rw-r--r--lib/bitsetv-print.h4
-rw-r--r--lib/bitsetv.c3
-rw-r--r--lib/bitsetv.h4
-rw-r--r--lib/ebitset.c5
-rw-r--r--lib/ebitset.h4
-rw-r--r--lib/get-errno.c2
-rw-r--r--lib/get-errno.h2
-rw-r--r--lib/lbitset.c6
-rw-r--r--lib/lbitset.h4
-rw-r--r--lib/libiberty.h3
-rw-r--r--lib/main.c2
-rw-r--r--lib/timevar.c4
-rw-r--r--lib/timevar.def4
-rw-r--r--lib/timevar.h6
-rw-r--r--lib/vbitset.c5
-rw-r--r--lib/vbitset.h4
-rw-r--r--lib/yyerror.c2
26 files changed, 76 insertions, 31 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index c2b4ec27..439f6e07 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,7 +1,7 @@
# Make bison/lib.
-# Copyright (C) 2001-2004, 2006, 2008-2010 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001, 2002, 2003, 2004, 2006, 2008, 2009, 2010 Free
+# Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/lib/abitset.c b/lib/abitset.c
index dc71713d..4c5f7908 100644
--- a/lib/abitset.c
+++ b/lib/abitset.c
@@ -1,6 +1,8 @@
/* Array bitsets.
- Copyright (C) 2002-2003, 2006, 2009-2010 Free Software Foundation,
- Inc.
+
+ Copyright (C) 2002, 2003, 2006, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/abitset.h b/lib/abitset.h
index 86e20e1e..670d449e 100644
--- a/lib/abitset.h
+++ b/lib/abitset.h
@@ -1,5 +1,7 @@
/* Functions to support abitsets.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bbitset.h b/lib/bbitset.h
index c24d1163..50b3f3ef 100644
--- a/lib/bbitset.h
+++ b/lib/bbitset.h
@@ -1,6 +1,8 @@
/* Base bitset stuff.
- Copyright (C) 2002-2004, 2006, 2009-2010 Free Software Foundation,
- Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2006, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitset.c b/lib/bitset.c
index 83d10a86..f4692dde 100644
--- a/lib/bitset.c
+++ b/lib/bitset.c
@@ -1,5 +1,8 @@
/* General bitsets.
- Copyright (C) 2002-2006, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2005, 2006, 2009, 2010 Free
+ Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitset.h b/lib/bitset.h
index 8e319380..0bb7e8bf 100644
--- a/lib/bitset.h
+++ b/lib/bitset.h
@@ -1,5 +1,8 @@
/* Generic bitsets.
- Copyright (C) 2002-2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitset_stats.c b/lib/bitset_stats.c
index a0563853..f67b0692 100644
--- a/lib/bitset_stats.c
+++ b/lib/bitset_stats.c
@@ -1,5 +1,8 @@
/* Bitset statistics.
- Copyright (C) 2002-2006, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2005, 2006, 2009, 2010 Free
+ Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitset_stats.h b/lib/bitset_stats.h
index 06dac77d..38675e77 100644
--- a/lib/bitset_stats.h
+++ b/lib/bitset_stats.h
@@ -1,5 +1,8 @@
/* Functions to support bitset statistics.
- Copyright (C) 2002-2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitsetv-print.c b/lib/bitsetv-print.c
index 3ab545e7..17a45e09 100644
--- a/lib/bitsetv-print.c
+++ b/lib/bitsetv-print.c
@@ -1,5 +1,6 @@
/* Bitset vectors.
- Copyright (C) 2001-2002, 2004, 2006, 2009-2010 Free Software
+
+ Copyright (C) 2001, 2002, 2004, 2006, 2009, 2010 Free Software
Foundation, Inc.
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitsetv-print.h b/lib/bitsetv-print.h
index b4913184..23474867 100644
--- a/lib/bitsetv-print.h
+++ b/lib/bitsetv-print.h
@@ -1,5 +1,7 @@
/* Bitset vectors.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Akim Demaille (akim@freefriends.org).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitsetv.c b/lib/bitsetv.c
index 3a082794..e4748366 100644
--- a/lib/bitsetv.c
+++ b/lib/bitsetv.c
@@ -1,5 +1,6 @@
/* Bitset vectors.
- Copyright (C) 2001-2002, 2004-2006, 2009-2010 Free Software
+
+ Copyright (C) 2001, 2002, 2004, 2005, 2006, 2009, 2010 Free Software
Foundation, Inc.
This program is free software: you can redistribute it and/or modify
diff --git a/lib/bitsetv.h b/lib/bitsetv.h
index 2bec847c..53450cc4 100644
--- a/lib/bitsetv.h
+++ b/lib/bitsetv.h
@@ -1,5 +1,7 @@
/* Bitset vectors.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/ebitset.c b/lib/ebitset.c
index 0d12d044..2645b30c 100644
--- a/lib/ebitset.c
+++ b/lib/ebitset.c
@@ -1,5 +1,8 @@
/* Functions to support expandable bitsets.
- Copyright (C) 2002-2006, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2005, 2006, 2009, 2010 Free
+ Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/ebitset.h b/lib/ebitset.h
index 3d73acee..5b0b28f3 100644
--- a/lib/ebitset.h
+++ b/lib/ebitset.h
@@ -1,5 +1,7 @@
/* Functions to support ebitsets.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/get-errno.c b/lib/get-errno.c
index f0a82e2c..c3354ec0 100644
--- a/lib/get-errno.c
+++ b/lib/get-errno.c
@@ -1,6 +1,6 @@
/* get-errno.c - get and set errno.
- Copyright (C) 2002, 2006, 2009-2010 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2006, 2009, 2010 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/lib/get-errno.h b/lib/get-errno.h
index 5cb660bd..f376b837 100644
--- a/lib/get-errno.h
+++ b/lib/get-errno.h
@@ -1,6 +1,6 @@
/* get-errno.h - get and set errno.
- Copyright (C) 2002, 2009-2010 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2009, 2010 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/lib/lbitset.c b/lib/lbitset.c
index d48a4a83..d8cd9ed6 100644
--- a/lib/lbitset.c
+++ b/lib/lbitset.c
@@ -1,6 +1,8 @@
/* Functions to support link list bitsets.
- Copyright (C) 2002-2004, 2006, 2009-2010 Free Software Foundation,
- Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2006, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/lbitset.h b/lib/lbitset.h
index 59f79144..52c8f8bf 100644
--- a/lib/lbitset.h
+++ b/lib/lbitset.h
@@ -1,5 +1,7 @@
/* Functions to support lbitsets.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/libiberty.h b/lib/libiberty.h
index ac5842e7..e69fc2e8 100644
--- a/lib/libiberty.h
+++ b/lib/libiberty.h
@@ -1,5 +1,6 @@
/* Fake libiberty.h for Bison.
- Copyright (C) 2002-2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2009, 2010 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/lib/main.c b/lib/main.c
index 028194a0..9566c5d5 100644
--- a/lib/main.c
+++ b/lib/main.c
@@ -1,6 +1,6 @@
/* Yacc library main function.
- Copyright (C) 2002, 2009-2010 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2009, 2010 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.
diff --git a/lib/timevar.c b/lib/timevar.c
index 00faaf91..8896af61 100644
--- a/lib/timevar.c
+++ b/lib/timevar.c
@@ -1,6 +1,8 @@
/* Timing variables for measuring compiler performance.
- Copyright (C) 2000, 2002, 2004-2006, 2009-2010 Free Software
+
+ Copyright (C) 2000, 2002, 2004, 2006, 2009, 2010 Free Software
Foundation, Inc.
+
Contributed by Alex Samuel <samuel@codesourcery.com>
This program is free software: you can redistribute it and/or modify
diff --git a/lib/timevar.def b/lib/timevar.def
index ab04b226..0ec927ef 100644
--- a/lib/timevar.def
+++ b/lib/timevar.def
@@ -1,6 +1,8 @@
/* This file contains the definitions for timing variables used to -*- C -*-
measure run-time performance of the compiler.
- Copyright (C) 2002, 2007, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2007, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Akim Demaille <akim@freefriends.org>.
This file is part of Bison, the GNU Compiler Compiler.
diff --git a/lib/timevar.h b/lib/timevar.h
index 52cc8e3e..162206fa 100644
--- a/lib/timevar.h
+++ b/lib/timevar.h
@@ -1,6 +1,8 @@
/* Timing variables for measuring compiler performance.
- Copyright (C) 2000, 2002, 2004, 2009-2010 Free Software Foundation,
- Inc.
+
+ Copyright (C) 2000, 2002, 2004, 2009, 2010 Free Software
+ Foundation, Inc.
+
Contributed by Alex Samuel <samuel@codesourcery.com>
This program is free software: you can redistribute it and/or modify
diff --git a/lib/vbitset.c b/lib/vbitset.c
index d82f0ec9..8b5756ff 100644
--- a/lib/vbitset.c
+++ b/lib/vbitset.c
@@ -1,5 +1,8 @@
/* Variable array bitsets.
- Copyright (C) 2002-2006, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2003, 2004, 2005, 2006, 2009, 2010 Free
+ Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/vbitset.h b/lib/vbitset.h
index d9f3a2eb..f1f7a111 100644
--- a/lib/vbitset.h
+++ b/lib/vbitset.h
@@ -1,5 +1,7 @@
/* Functions to support vbitsets.
- Copyright (C) 2002, 2004, 2009-2010 Free Software Foundation, Inc.
+
+ Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc.
+
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software: you can redistribute it and/or modify
diff --git a/lib/yyerror.c b/lib/yyerror.c
index 8e554a09..6db0e158 100644
--- a/lib/yyerror.c
+++ b/lib/yyerror.c
@@ -1,6 +1,6 @@
/* Yacc library error-printing function.
- Copyright (C) 2002, 2009-2010 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2009, 2010 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.