aboutsummaryrefslogtreecommitdiff
path: root/libcpp
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2024-01-03 12:19:35 +0100
committerJakub Jelinek <jakub@redhat.com>2024-01-03 12:19:35 +0100
commita945c346f57ba40fc80c14ac59be0d43624e559d (patch)
tree916323bfe593c5d0112c224230e52c559611f5b3 /libcpp
parent9afc19159c2947cddee0c833429da1f190fe34ca (diff)
downloadgcc-a945c346f57ba40fc80c14ac59be0d43624e559d.zip
gcc-a945c346f57ba40fc80c14ac59be0d43624e559d.tar.gz
gcc-a945c346f57ba40fc80c14ac59be0d43624e559d.tar.bz2
Update copyright years.
Diffstat (limited to 'libcpp')
-rw-r--r--libcpp/Makefile.in2
-rw-r--r--libcpp/charset.cc2
-rw-r--r--libcpp/directives.cc2
-rw-r--r--libcpp/errors.cc2
-rw-r--r--libcpp/expr.cc2
-rw-r--r--libcpp/files.cc2
-rw-r--r--libcpp/identifiers.cc2
-rw-r--r--libcpp/include/cpplib.h2
-rw-r--r--libcpp/include/line-map.h2
-rw-r--r--libcpp/include/mkdeps.h2
-rw-r--r--libcpp/include/rich-location.h2
-rw-r--r--libcpp/include/symtab.h2
-rw-r--r--libcpp/init.cc2
-rw-r--r--libcpp/internal.h2
-rw-r--r--libcpp/lex.cc2
-rw-r--r--libcpp/line-map.cc2
-rw-r--r--libcpp/macro.cc2
-rw-r--r--libcpp/makeucnid.cc4
-rw-r--r--libcpp/makeuname2c.cc4
-rw-r--r--libcpp/mkdeps.cc2
-rw-r--r--libcpp/pch.cc2
-rw-r--r--libcpp/symtab.cc2
-rw-r--r--libcpp/system.h2
-rw-r--r--libcpp/traditional.cc2
-rw-r--r--libcpp/ucnid.h2
-rw-r--r--libcpp/ucnid.tab2
-rw-r--r--libcpp/uname2c.h2
27 files changed, 29 insertions, 29 deletions
diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in
index 1e063a5..ebbca37 100644
--- a/libcpp/Makefile.in
+++ b/libcpp/Makefile.in
@@ -1,7 +1,7 @@
# @configure_input@
# Makefile for libcpp. Run 'configure' to generate Makefile from Makefile.in
-# Copyright (C) 2004-2023 Free Software Foundation, Inc.
+# Copyright (C) 2004-2024 Free Software Foundation, Inc.
#This file is part of libcpp.
diff --git a/libcpp/charset.cc b/libcpp/charset.cc
index 9a944d9..95ca381 100644
--- a/libcpp/charset.cc
+++ b/libcpp/charset.cc
@@ -1,5 +1,5 @@
/* CPP Library - charsets
- Copyright (C) 1998-2023 Free Software Foundation, Inc.
+ Copyright (C) 1998-2024 Free Software Foundation, Inc.
Broken out of c-lex.cc Apr 2003, adding valid C99 UCN ranges.
diff --git a/libcpp/directives.cc b/libcpp/directives.cc
index 02b9112..479f8c7 100644
--- a/libcpp/directives.cc
+++ b/libcpp/directives.cc
@@ -1,5 +1,5 @@
/* CPP Library. (Directive handling.)
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Contributed by Per Bothner, 1994-95.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/errors.cc b/libcpp/errors.cc
index 3269d07..295496d 100644
--- a/libcpp/errors.cc
+++ b/libcpp/errors.cc
@@ -1,5 +1,5 @@
/* Default error handlers for CPP Library.
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Written by Per Bothner, 1994.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/expr.cc b/libcpp/expr.cc
index 4f4a972..815eb13 100644
--- a/libcpp/expr.cc
+++ b/libcpp/expr.cc
@@ -1,5 +1,5 @@
/* Parse C expressions for cpplib.
- Copyright (C) 1987-2023 Free Software Foundation, Inc.
+ Copyright (C) 1987-2024 Free Software Foundation, Inc.
Contributed by Per Bothner, 1994.
This program is free software; you can redistribute it and/or modify it
diff --git a/libcpp/files.cc b/libcpp/files.cc
index 27301d7..e66eef4 100644
--- a/libcpp/files.cc
+++ b/libcpp/files.cc
@@ -1,5 +1,5 @@
/* Part of CPP library. File handling.
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Written by Per Bothner, 1994.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/identifiers.cc b/libcpp/identifiers.cc
index 10cbbdf..8b91bb2 100644
--- a/libcpp/identifiers.cc
+++ b/libcpp/identifiers.cc
@@ -1,5 +1,5 @@
/* Hash tables for the CPP library.
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Written by Per Bothner, 1994.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h
index 2b66262..f699daa 100644
--- a/libcpp/include/cpplib.h
+++ b/libcpp/include/cpplib.h
@@ -1,5 +1,5 @@
/* Definitions for CPP library.
- Copyright (C) 1995-2023 Free Software Foundation, Inc.
+ Copyright (C) 1995-2024 Free Software Foundation, Inc.
Written by Per Bothner, 1994-95.
This program is free software; you can redistribute it and/or modify it
diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h
index 72db310..e6e2b08 100644
--- a/libcpp/include/line-map.h
+++ b/libcpp/include/line-map.h
@@ -1,5 +1,5 @@
/* Map (unsigned int) keys to (source file, line, column) triples.
- Copyright (C) 2001-2023 Free Software Foundation, Inc.
+ Copyright (C) 2001-2024 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 the
diff --git a/libcpp/include/mkdeps.h b/libcpp/include/mkdeps.h
index 7025e63..fd06912 100644
--- a/libcpp/include/mkdeps.h
+++ b/libcpp/include/mkdeps.h
@@ -1,5 +1,5 @@
/* Dependency generator for Makefile fragments.
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 Free Software Foundation, Inc.
Contributed by Zack Weinberg, Mar 2000
This program is free software; you can redistribute it and/or modify it
diff --git a/libcpp/include/rich-location.h b/libcpp/include/rich-location.h
index 878c71c..94c6e44 100644
--- a/libcpp/include/rich-location.h
+++ b/libcpp/include/rich-location.h
@@ -1,5 +1,5 @@
/* Bundles of location information used when printing diagnostics.
- Copyright (C) 2015-2023 Free Software Foundation, Inc.
+ Copyright (C) 2015-2024 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 the
diff --git a/libcpp/include/symtab.h b/libcpp/include/symtab.h
index 4a2370e..16c0edf 100644
--- a/libcpp/include/symtab.h
+++ b/libcpp/include/symtab.h
@@ -1,5 +1,5 @@
/* Hash tables.
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 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 the
diff --git a/libcpp/init.cc b/libcpp/init.cc
index 5dfce4b..54fc923 100644
--- a/libcpp/init.cc
+++ b/libcpp/init.cc
@@ -1,5 +1,5 @@
/* CPP Library.
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Contributed by Per Bothner, 1994-95.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/internal.h b/libcpp/internal.h
index 134fc33..a20215c 100644
--- a/libcpp/internal.h
+++ b/libcpp/internal.h
@@ -1,5 +1,5 @@
/* Part of CPP library.
- Copyright (C) 1997-2023 Free Software Foundation, Inc.
+ Copyright (C) 1997-2024 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 the
diff --git a/libcpp/lex.cc b/libcpp/lex.cc
index 273f6b2..5aa3799 100644
--- a/libcpp/lex.cc
+++ b/libcpp/lex.cc
@@ -1,5 +1,5 @@
/* CPP Library - lexical analysis.
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 Free Software Foundation, Inc.
Contributed by Per Bothner, 1994-95.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/line-map.cc b/libcpp/line-map.cc
index be2d096..d5200b3 100644
--- a/libcpp/line-map.cc
+++ b/libcpp/line-map.cc
@@ -1,5 +1,5 @@
/* Map (unsigned int) keys to (source file, line, column) triples.
- Copyright (C) 2001-2023 Free Software Foundation, Inc.
+ Copyright (C) 2001-2024 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 the
diff --git a/libcpp/macro.cc b/libcpp/macro.cc
index 6f24a9d..a3d2c15 100644
--- a/libcpp/macro.cc
+++ b/libcpp/macro.cc
@@ -1,5 +1,5 @@
/* Part of CPP library. (Macro and #define handling.)
- Copyright (C) 1986-2023 Free Software Foundation, Inc.
+ Copyright (C) 1986-2024 Free Software Foundation, Inc.
Written by Per Bothner, 1994.
Based on CCCP program by Paul Rubin, June 1986
Adapted to ANSI C, Richard Stallman, Jan 1987
diff --git a/libcpp/makeucnid.cc b/libcpp/makeucnid.cc
index 5ce17b7..3c045c8 100644
--- a/libcpp/makeucnid.cc
+++ b/libcpp/makeucnid.cc
@@ -1,5 +1,5 @@
/* Make ucnid.h from various sources.
- Copyright (C) 2005-2023 Free Software Foundation, Inc.
+ Copyright (C) 2005-2024 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 the
@@ -450,7 +450,7 @@ write_copyright (void)
{
static const char copyright[] = "\
/* Unicode characters and various properties.\n\
- Copyright (C) 2003-2023 Free Software Foundation, Inc.\n\
+ Copyright (C) 2003-2024 Free Software Foundation, Inc.\n\
\n\
This program is free software; you can redistribute it and/or modify it\n\
under the terms of the GNU General Public License as published by the\n\
diff --git a/libcpp/makeuname2c.cc b/libcpp/makeuname2c.cc
index d064558..01fe4f4 100644
--- a/libcpp/makeuname2c.cc
+++ b/libcpp/makeuname2c.cc
@@ -1,5 +1,5 @@
/* Make uname2c.h from various sources.
- Copyright (C) 2005-2023 Free Software Foundation, Inc.
+ Copyright (C) 2005-2024 Free Software Foundation, Inc.
Contributed by Jakub Jelinek <jakub@redhat.com>
This program is free software; you can redistribute it and/or modify it
@@ -653,7 +653,7 @@ write_copyright (void)
{
static const char copyright[] = "\
/* Unicode name to codepoint.\n\
- Copyright (C) 2005-2023 Free Software Foundation, Inc.\n\
+ Copyright (C) 2005-2024 Free Software Foundation, Inc.\n\
\n\
This program is free software; you can redistribute it and/or modify it\n\
under the terms of the GNU General Public License as published by the\n\
diff --git a/libcpp/mkdeps.cc b/libcpp/mkdeps.cc
index a3e2c78..4cf0cf0 100644
--- a/libcpp/mkdeps.cc
+++ b/libcpp/mkdeps.cc
@@ -1,5 +1,5 @@
/* Dependency generator for Makefile fragments.
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 Free Software Foundation, Inc.
Contributed by Zack Weinberg, Mar 2000
This program is free software; you can redistribute it and/or modify it
diff --git a/libcpp/pch.cc b/libcpp/pch.cc
index a9f4ff1..e156fe2 100644
--- a/libcpp/pch.cc
+++ b/libcpp/pch.cc
@@ -1,5 +1,5 @@
/* Part of CPP library. (Precompiled header reading/writing.)
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 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 the
diff --git a/libcpp/symtab.cc b/libcpp/symtab.cc
index ea9f269..131aca7 100644
--- a/libcpp/symtab.cc
+++ b/libcpp/symtab.cc
@@ -1,5 +1,5 @@
/* Hash tables.
- Copyright (C) 2000-2023 Free Software Foundation, Inc.
+ Copyright (C) 2000-2024 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 the
diff --git a/libcpp/system.h b/libcpp/system.h
index 8103352..ae6540a 100644
--- a/libcpp/system.h
+++ b/libcpp/system.h
@@ -1,6 +1,6 @@
/* Get common system includes and various definitions and declarations based
on autoconf macros.
- Copyright (C) 1998-2023 Free Software Foundation, Inc.
+ Copyright (C) 1998-2024 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcpp/traditional.cc b/libcpp/traditional.cc
index 3d7e2ee..cf0ef4c 100644
--- a/libcpp/traditional.cc
+++ b/libcpp/traditional.cc
@@ -1,5 +1,5 @@
/* CPP Library - traditional lexical analysis and macro expansion.
- Copyright (C) 2002-2023 Free Software Foundation, Inc.
+ Copyright (C) 2002-2024 Free Software Foundation, Inc.
Contributed by Neil Booth, May 2002
This program is free software; you can redistribute it and/or modify it
diff --git a/libcpp/ucnid.h b/libcpp/ucnid.h
index cde9fcf..9ae311c 100644
--- a/libcpp/ucnid.h
+++ b/libcpp/ucnid.h
@@ -1,5 +1,5 @@
/* Unicode characters and various properties.
- Copyright (C) 2003-2023 Free Software Foundation, Inc.
+ Copyright (C) 2003-2024 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 the
diff --git a/libcpp/ucnid.tab b/libcpp/ucnid.tab
index e58255a..98e7245 100644
--- a/libcpp/ucnid.tab
+++ b/libcpp/ucnid.tab
@@ -1,5 +1,5 @@
; Table of UCNs which are valid in identifiers.
-; Copyright (C) 2003-2023 Free Software Foundation, Inc.
+; Copyright (C) 2003-2024 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 the
diff --git a/libcpp/uname2c.h b/libcpp/uname2c.h
index 821996c..667c32e 100644
--- a/libcpp/uname2c.h
+++ b/libcpp/uname2c.h
@@ -1,5 +1,5 @@
/* Unicode name to codepoint.
- Copyright (C) 2005-2023 Free Software Foundation, Inc.
+ Copyright (C) 2005-2024 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 the