about summary refs log tree commit diff
path: root/time
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2023-01-06 21:08:04 +0000
committerJoseph Myers <joseph@codesourcery.com>2023-01-06 21:14:39 +0000
commit6d7e8eda9b85b08f207a6dc6f187e94e4817270f (patch)
treec438ee7cd04a7ccd4cafe2449ac5173bcd17718b /time
parent728ada505aca44f768675b3aa1ab34bae96a2656 (diff)
downloadglibc-6d7e8eda9b85b08f207a6dc6f187e94e4817270f.tar.gz
glibc-6d7e8eda9b85b08f207a6dc6f187e94e4817270f.tar.xz
glibc-6d7e8eda9b85b08f207a6dc6f187e94e4817270f.zip
Update copyright dates with scripts/update-copyrights
Diffstat (limited to 'time')
-rw-r--r--time/Makefile2
-rw-r--r--time/adjtime.c2
-rw-r--r--time/alt_digit.c2
-rw-r--r--time/asctime.c2
-rw-r--r--time/clock.c2
-rw-r--r--time/clock_getcpuclockid.c2
-rw-r--r--time/clock_getres.c2
-rw-r--r--time/clock_gettime.c2
-rw-r--r--time/clock_nanosleep.c2
-rw-r--r--time/clock_settime.c2
-rw-r--r--time/ctime.c2
-rw-r--r--time/ctime_r.c2
-rw-r--r--time/difftime.c2
-rw-r--r--time/dysize.c2
-rw-r--r--time/era.c2
-rw-r--r--time/ftime.c2
-rw-r--r--time/getdate.c2
-rw-r--r--time/getitimer.c2
-rw-r--r--time/gettimeofday.c2
-rw-r--r--time/gmtime.c2
-rw-r--r--time/lc-time-cleanup.c2
-rw-r--r--time/localtime.c2
-rw-r--r--time/mktime-internal.h2
-rw-r--r--time/mktime.c2
-rw-r--r--time/offtime.c2
-rw-r--r--time/setitimer.c2
-rw-r--r--time/settimeofday.c2
-rw-r--r--time/settimezone.c2
-rw-r--r--time/stime.c2
-rw-r--r--time/strftime.c2
-rw-r--r--time/strftime_l.c2
-rw-r--r--time/strptime.c2
-rw-r--r--time/strptime_l.c2
-rw-r--r--time/sys/time.h2
-rw-r--r--time/sys/timeb.h2
-rw-r--r--time/test_time.c2
-rw-r--r--time/time.c2
-rw-r--r--time/time.h2
-rw-r--r--time/timegm.c2
-rw-r--r--time/timespec_get.c2
-rw-r--r--time/timespec_getres.c2
-rw-r--r--time/tst-adjtime.c2
-rw-r--r--time/tst-clock.c2
-rw-r--r--time/tst-clock_nanosleep.c2
-rw-r--r--time/tst-clock_settime.c2
-rw-r--r--time/tst-cpuclock1.c2
-rw-r--r--time/tst-ctime.c2
-rw-r--r--time/tst-difftime.c2
-rw-r--r--time/tst-ftime.c2
-rw-r--r--time/tst-getdate.c2
-rw-r--r--time/tst-gmtime.c2
-rw-r--r--time/tst-itimer.c2
-rw-r--r--time/tst-mktime4.c2
-rw-r--r--time/tst-settimeofday.c2
-rw-r--r--time/tst-strftime2.c2
-rw-r--r--time/tst-strftime3.c2
-rw-r--r--time/tst-strptime-whitespace.c2
-rw-r--r--time/tst-strptime.c2
-rw-r--r--time/tst-timegm.c2
-rw-r--r--time/tst-timespec_get.c2
-rw-r--r--time/tst-timespec_getres.c2
-rw-r--r--time/tst-tzname.c2
-rw-r--r--time/tst-y2039.c2
-rw-r--r--time/tzfile.c2
-rw-r--r--time/tzset.c2
-rw-r--r--time/wcsftime.c2
-rw-r--r--time/wcsftime_l.c2
67 files changed, 67 insertions, 67 deletions
diff --git a/time/Makefile b/time/Makefile
index dc6e2c93ad..d86f2105c5 100644
--- a/time/Makefile
+++ b/time/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1991-2022 Free Software Foundation, Inc.
+# Copyright (C) 1991-2023 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/adjtime.c b/time/adjtime.c
index f212347ce9..ff9ad4277e 100644
--- a/time/adjtime.c
+++ b/time/adjtime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/alt_digit.c b/time/alt_digit.c
index 331cb395ce..84c37a2a0a 100644
--- a/time/alt_digit.c
+++ b/time/alt_digit.c
@@ -1,5 +1,5 @@
 /* Helper functions used by strftime/strptime to handle alternate digits.
-   Copyright (C) 1995-2022 Free Software Foundation, Inc.
+   Copyright (C) 1995-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/asctime.c b/time/asctime.c
index 193a4b9a48..d0671030c8 100644
--- a/time/asctime.c
+++ b/time/asctime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock.c b/time/clock.c
index bb8e176c21..3eb345b8c0 100644
--- a/time/clock.c
+++ b/time/clock.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock_getcpuclockid.c b/time/clock_getcpuclockid.c
index 47f99d78a9..254cddc2da 100644
--- a/time/clock_getcpuclockid.c
+++ b/time/clock_getcpuclockid.c
@@ -1,5 +1,5 @@
 /* Get a clockid_t for the process CPU clock of a given process.  Generic.
-   Copyright (C) 2000-2022 Free Software Foundation, Inc.
+   Copyright (C) 2000-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock_getres.c b/time/clock_getres.c
index 61f5e9668f..60ac1a164d 100644
--- a/time/clock_getres.c
+++ b/time/clock_getres.c
@@ -1,5 +1,5 @@
 /* Get the resolution of a clock.  Stub version.
-   Copyright (C) 1999-2022 Free Software Foundation, Inc.
+   Copyright (C) 1999-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock_gettime.c b/time/clock_gettime.c
index 4b712d09d5..6dbe1fcd5c 100644
--- a/time/clock_gettime.c
+++ b/time/clock_gettime.c
@@ -1,5 +1,5 @@
 /* Get the current value of a clock.  Stub version.
-   Copyright (C) 1999-2022 Free Software Foundation, Inc.
+   Copyright (C) 1999-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock_nanosleep.c b/time/clock_nanosleep.c
index 8399a77c23..784ce55298 100644
--- a/time/clock_nanosleep.c
+++ b/time/clock_nanosleep.c
@@ -1,5 +1,5 @@
 /* High-resolution sleep with the specified clock.  Stub version.
-   Copyright (C) 2000-2022 Free Software Foundation, Inc.
+   Copyright (C) 2000-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/clock_settime.c b/time/clock_settime.c
index 27da9d3e4f..1799fa364f 100644
--- a/time/clock_settime.c
+++ b/time/clock_settime.c
@@ -1,5 +1,5 @@
 /* Set a clock to a given value.  Stub version.
-   Copyright (C) 1999-2022 Free Software Foundation, Inc.
+   Copyright (C) 1999-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/ctime.c b/time/ctime.c
index 856c52dec1..9cb59fdc21 100644
--- a/time/ctime.c
+++ b/time/ctime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/ctime_r.c b/time/ctime_r.c
index 0abd9d739a..f9a9c53879 100644
--- a/time/ctime_r.c
+++ b/time/ctime_r.c
@@ -1,5 +1,5 @@
 /* Return in BUF representation of time T in form of asctime
-   Copyright (C) 1996-2022 Free Software Foundation, Inc.
+   Copyright (C) 1996-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/difftime.c b/time/difftime.c
index 86439c71be..a7ffe35fa6 100644
--- a/time/difftime.c
+++ b/time/difftime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/dysize.c b/time/dysize.c
index e8c6903234..fcd46e58d0 100644
--- a/time/dysize.c
+++ b/time/dysize.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1994-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/era.c b/time/era.c
index 7f18071888..7f80e42bd0 100644
--- a/time/era.c
+++ b/time/era.c
@@ -1,5 +1,5 @@
 /* Helper functions used by strftime/strptime to handle locale-specific "eras".
-   Copyright (C) 1995-2022 Free Software Foundation, Inc.
+   Copyright (C) 1995-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/ftime.c b/time/ftime.c
index ad80208c66..98dd8f2eae 100644
--- a/time/ftime.c
+++ b/time/ftime.c
@@ -1,5 +1,5 @@
 /* Deprecated return date and time.
-   Copyright (C) 1994-2022 Free Software Foundation, Inc.
+   Copyright (C) 1994-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/getdate.c b/time/getdate.c
index fdcefcdd1b..c5c8378707 100644
--- a/time/getdate.c
+++ b/time/getdate.c
@@ -1,5 +1,5 @@
 /* Convert a string representation of time to a time value.
-   Copyright (C) 1997-2022 Free Software Foundation, Inc.
+   Copyright (C) 1997-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/getitimer.c b/time/getitimer.c
index 104d3048d7..6ef5d06daa 100644
--- a/time/getitimer.c
+++ b/time/getitimer.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/gettimeofday.c b/time/gettimeofday.c
index 1d595884df..ae9d64126d 100644
--- a/time/gettimeofday.c
+++ b/time/gettimeofday.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/gmtime.c b/time/gmtime.c
index 88a0f12c65..dcd9282d9f 100644
--- a/time/gmtime.c
+++ b/time/gmtime.c
@@ -1,5 +1,5 @@
 /* Convert `time_t' to `struct tm' in UTC.
-   Copyright (C) 1991-2022 Free Software Foundation, Inc.
+   Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/lc-time-cleanup.c b/time/lc-time-cleanup.c
index bcf6d2fbc9..523bcf65e6 100644
--- a/time/lc-time-cleanup.c
+++ b/time/lc-time-cleanup.c
@@ -1,5 +1,5 @@
 /* Cleanup code for data structures kept by strftime/strptime helper functions.
-   Copyright (C) 2002-2022 Free Software Foundation, Inc.
+   Copyright (C) 2002-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/localtime.c b/time/localtime.c
index be5cc7cb6c..e5e06e4fd6 100644
--- a/time/localtime.c
+++ b/time/localtime.c
@@ -1,5 +1,5 @@
 /* Convert `time_t' to `struct tm' in local time zone.
-   Copyright (C) 1991-2022 Free Software Foundation, Inc.
+   Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/mktime-internal.h b/time/mktime-internal.h
index 170764eabc..709c36bdf5 100644
--- a/time/mktime-internal.h
+++ b/time/mktime-internal.h
@@ -1,5 +1,5 @@
 /* Internals of mktime and related functions
-   Copyright 2016-2022 Free Software Foundation, Inc.
+   Copyright 2016-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Paul Eggert <eggert@cs.ucla.edu>.
 
diff --git a/time/mktime.c b/time/mktime.c
index 7dc9d67ef9..94a4320e6c 100644
--- a/time/mktime.c
+++ b/time/mktime.c
@@ -1,5 +1,5 @@
 /* Convert a 'struct tm' to a time_t value.
-   Copyright (C) 1993-2022 Free Software Foundation, Inc.
+   Copyright (C) 1993-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Paul Eggert <eggert@twinsun.com>.
 
diff --git a/time/offtime.c b/time/offtime.c
index d1c298f96e..d94aec0d05 100644
--- a/time/offtime.c
+++ b/time/offtime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/setitimer.c b/time/setitimer.c
index 19085cdd02..999a0eb91e 100644
--- a/time/setitimer.c
+++ b/time/setitimer.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/settimeofday.c b/time/settimeofday.c
index 26266cf7d8..f87a81690f 100644
--- a/time/settimeofday.c
+++ b/time/settimeofday.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/settimezone.c b/time/settimezone.c
index 31cd65db60..826bac77ec 100644
--- a/time/settimezone.c
+++ b/time/settimezone.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2019-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/stime.c b/time/stime.c
index 1e178ce901..11bd39807a 100644
--- a/time/stime.c
+++ b/time/stime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/strftime.c b/time/strftime.c
index 947e01ba4e..80fa5a072e 100644
--- a/time/strftime.c
+++ b/time/strftime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/strftime_l.c b/time/strftime_l.c
index 75554fee7c..e09561c39c 100644
--- a/time/strftime_l.c
+++ b/time/strftime_l.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/strptime.c b/time/strptime.c
index a355249c1f..f9e2d7d397 100644
--- a/time/strptime.c
+++ b/time/strptime.c
@@ -1,5 +1,5 @@
 /* Convert a string representation of time to a time value.
-   Copyright (C) 1996-2022 Free Software Foundation, Inc.
+   Copyright (C) 1996-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
diff --git a/time/strptime_l.c b/time/strptime_l.c
index a3c5681fc2..80fd705b8d 100644
--- a/time/strptime_l.c
+++ b/time/strptime_l.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/sys/time.h b/time/sys/time.h
index c9f4335e9c..fbc4dfbdb6 100644
--- a/time/sys/time.h
+++ b/time/sys/time.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/sys/timeb.h b/time/sys/timeb.h
index bfe4b9acc1..4b9de3d3f7 100644
--- a/time/sys/timeb.h
+++ b/time/sys/timeb.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1994-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/test_time.c b/time/test_time.c
index 7de7ea7e9a..3180355acf 100644
--- a/time/test_time.c
+++ b/time/test_time.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/time.c b/time/time.c
index d5dcb2e7ed..6713bbf452 100644
--- a/time/time.c
+++ b/time/time.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/time.h b/time/time.h
index d18089116e..4db274bd0c 100644
--- a/time/time.h
+++ b/time/time.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/timegm.c b/time/timegm.c
index a1b19efc39..b47025a054 100644
--- a/time/timegm.c
+++ b/time/timegm.c
@@ -1,6 +1,6 @@
 /* Convert UTC calendar time to simple time.  Like mktime but assumes UTC.
 
-   Copyright (C) 1994-2022 Free Software Foundation, Inc.
+   Copyright (C) 1994-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/timespec_get.c b/time/timespec_get.c
index ec9cad4181..9b1d4f22ed 100644
--- a/time/timespec_get.c
+++ b/time/timespec_get.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2011-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2011-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/timespec_getres.c b/time/timespec_getres.c
index 4cb447f011..fd64dc7a47 100644
--- a/time/timespec_getres.c
+++ b/time/timespec_getres.c
@@ -1,5 +1,5 @@
 /* Get resolution of a time base.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-adjtime.c b/time/tst-adjtime.c
index e2e9fe751f..d8ffc366c6 100644
--- a/time/tst-adjtime.c
+++ b/time/tst-adjtime.c
@@ -1,5 +1,5 @@
 /* Basic tests for adjtime.
-   Copyright (C) 2020-2022 Free Software Foundation, Inc.
+   Copyright (C) 2020-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-clock.c b/time/tst-clock.c
index 175224060b..66f23adcba 100644
--- a/time/tst-clock.c
+++ b/time/tst-clock.c
@@ -1,5 +1,5 @@
 /* Test program for POSIX clock_* functions.
-   Copyright (C) 2000-2022 Free Software Foundation, Inc.
+   Copyright (C) 2000-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-clock_nanosleep.c b/time/tst-clock_nanosleep.c
index 4b09bff342..a3c7f91186 100644
--- a/time/tst-clock_nanosleep.c
+++ b/time/tst-clock_nanosleep.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2003-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-clock_settime.c b/time/tst-clock_settime.c
index 56029f6842..695d6b4b32 100644
--- a/time/tst-clock_settime.c
+++ b/time/tst-clock_settime.c
@@ -1,5 +1,5 @@
 /* Test for clock_settime
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-cpuclock1.c b/time/tst-cpuclock1.c
index 2f80e6c03f..6f2e70a58a 100644
--- a/time/tst-cpuclock1.c
+++ b/time/tst-cpuclock1.c
@@ -1,5 +1,5 @@
 /* Test program for process CPU clocks.
-   Copyright (C) 2004-2022 Free Software Foundation, Inc.
+   Copyright (C) 2004-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-ctime.c b/time/tst-ctime.c
index ae35dcd958..3eba0ecbed 100644
--- a/time/tst-ctime.c
+++ b/time/tst-ctime.c
@@ -1,5 +1,5 @@
 /* Test for ctime
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-difftime.c b/time/tst-difftime.c
index 1eea8375ac..7d2db59ed4 100644
--- a/time/tst-difftime.c
+++ b/time/tst-difftime.c
@@ -1,5 +1,5 @@
 /* Test for difftime
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-ftime.c b/time/tst-ftime.c
index 0b982eef7f..c89307c2e0 100644
--- a/time/tst-ftime.c
+++ b/time/tst-ftime.c
@@ -1,5 +1,5 @@
 /* Verify that ftime is sane.
-   Copyright (C) 2014-2022 Free Software Foundation, Inc.
+   Copyright (C) 2014-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-getdate.c b/time/tst-getdate.c
index 7d4b3f4635..cf97e220f7 100644
--- a/time/tst-getdate.c
+++ b/time/tst-getdate.c
@@ -1,5 +1,5 @@
 /* Test for getdate.
-   Copyright (C) 2000-2022 Free Software Foundation, Inc.
+   Copyright (C) 2000-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-gmtime.c b/time/tst-gmtime.c
index beb8fb61ed..2b3061e501 100644
--- a/time/tst-gmtime.c
+++ b/time/tst-gmtime.c
@@ -1,5 +1,5 @@
 /* Basic tests for gmtime.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-itimer.c b/time/tst-itimer.c
index d989098932..7cb6690af2 100644
--- a/time/tst-itimer.c
+++ b/time/tst-itimer.c
@@ -1,5 +1,5 @@
 /* Basic tests for getitimer and setitimer.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-mktime4.c b/time/tst-mktime4.c
index 03c2a9a992..0959bfbfd5 100644
--- a/time/tst-mktime4.c
+++ b/time/tst-mktime4.c
@@ -1,5 +1,5 @@
 /* Test for mktime (4)
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-settimeofday.c b/time/tst-settimeofday.c
index baa42e1ee5..562b36056a 100644
--- a/time/tst-settimeofday.c
+++ b/time/tst-settimeofday.c
@@ -1,5 +1,5 @@
 /* Test for settimeofday
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-strftime2.c b/time/tst-strftime2.c
index 909f0775c6..3fcb6ebb19 100644
--- a/time/tst-strftime2.c
+++ b/time/tst-strftime2.c
@@ -1,7 +1,7 @@
 /* Verify the behavior of strftime on alternative representation for
    year.
 
-   Copyright (C) 2019-2022 Free Software Foundation, Inc.
+   Copyright (C) 2019-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-strftime3.c b/time/tst-strftime3.c
index 4473006489..717ce324fd 100644
--- a/time/tst-strftime3.c
+++ b/time/tst-strftime3.c
@@ -1,5 +1,5 @@
 /* Data-driven tests for strftime/strptime.
-   Copyright (C) 2019-2022 Free Software Foundation, Inc.  This file is
+   Copyright (C) 2019-2023 Free Software Foundation, Inc.  This file is
    part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-strptime-whitespace.c b/time/tst-strptime-whitespace.c
index 9fa06695a7..9295920c39 100644
--- a/time/tst-strptime-whitespace.c
+++ b/time/tst-strptime-whitespace.c
@@ -1,6 +1,6 @@
 /* Verify that strptime accepts arbitrary whitespace between tokens.
 
-   Copyright (C) 2013-2022 Free Software Foundation, Inc.
+   Copyright (C) 2013-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-strptime.c b/time/tst-strptime.c
index 7f9a5588db..3dae9e0594 100644
--- a/time/tst-strptime.c
+++ b/time/tst-strptime.c
@@ -1,5 +1,5 @@
 /* Test for strptime.
-   Copyright (C) 1998-2022 Free Software Foundation, Inc.
+   Copyright (C) 1998-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-timegm.c b/time/tst-timegm.c
index 32a8969aab..22893ac7fd 100644
--- a/time/tst-timegm.c
+++ b/time/tst-timegm.c
@@ -1,5 +1,5 @@
 /* Basic tests for timegm.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-timespec_get.c b/time/tst-timespec_get.c
index 097f625508..d735160394 100644
--- a/time/tst-timespec_get.c
+++ b/time/tst-timespec_get.c
@@ -1,5 +1,5 @@
 /* Basic tests for timespec_get.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-timespec_getres.c b/time/tst-timespec_getres.c
index 6ae4b233a5..b400a70138 100644
--- a/time/tst-timespec_getres.c
+++ b/time/tst-timespec_getres.c
@@ -1,5 +1,5 @@
 /* Basic tests for timespec_getres.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-tzname.c b/time/tst-tzname.c
index 9dd352ecb9..42e7befc0c 100644
--- a/time/tst-tzname.c
+++ b/time/tst-tzname.c
@@ -1,5 +1,5 @@
 /* Test that tzset sets tzname correctly (BZ #19253).
-   Copyright (C) 2015-2022 Free Software Foundation, Inc.
+   Copyright (C) 2015-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tst-y2039.c b/time/tst-y2039.c
index f1c1aabb0e..a01d833d78 100644
--- a/time/tst-y2039.c
+++ b/time/tst-y2039.c
@@ -1,5 +1,5 @@
 /* Test for localtime bug in year 2039 (bug 22639).
-   Copyright (C) 2017-2022 Free Software Foundation, Inc.
+   Copyright (C) 2017-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tzfile.c b/time/tzfile.c
index 8bba4e5b8d..55508c154b 100644
--- a/time/tzfile.c
+++ b/time/tzfile.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/tzset.c b/time/tzset.c
index a06142bb58..3df62106d8 100644
--- a/time/tzset.c
+++ b/time/tzset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/wcsftime.c b/time/wcsftime.c
index 3ef4e04dc9..b5ccb73ef0 100644
--- a/time/wcsftime.c
+++ b/time/wcsftime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/time/wcsftime_l.c b/time/wcsftime_l.c
index e7b0d2b3c1..0872217a10 100644
--- a/time/wcsftime_l.c
+++ b/time/wcsftime_l.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2022 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or