From 3c188d04bbeacc51e15bcf9fcb56b14f83612801 Mon Sep 17 00:00:00 2001 From: Marco Bodrato Date: Mon, 21 Feb 2022 01:50:12 +0100 Subject: Copyright years --- configure.ac | 2 +- gmp-impl.h | 2 +- mpz/gcd_ui.c | 14 +++++++------- tests/mpn/Makefile.am | 2 +- tune/common.c | 2 +- tune/speed.c | 2 +- tune/speed.h | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/configure.ac b/configure.ac index ed5bb30ec..a37276cb4 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. define(GMP_COPYRIGHT,[[ -Copyright 1996-2020 Free Software Foundation, Inc. +Copyright 1996-2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/gmp-impl.h b/gmp-impl.h index 099c92b2b..51ff70669 100644 --- a/gmp-impl.h +++ b/gmp-impl.h @@ -3,7 +3,7 @@ THE CONTENTS OF THIS FILE ARE FOR INTERNAL USE AND ARE ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES IN FUTURE GNU MP RELEASES. -Copyright 1991-2018, 2021 Free Software Foundation, Inc. +Copyright 1991-2018, 2021, 2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/gcd_ui.c b/mpz/gcd_ui.c index 1e7976ba2..64aa46d46 100644 --- a/mpz/gcd_ui.c +++ b/mpz/gcd_ui.c @@ -1,6 +1,6 @@ /* mpz_gcd_ui -- Calculate the greatest common divisor of two integers. -Copyright 1994, 1996, 1999-2004, 2015 Free Software Foundation, Inc. +Copyright 1994, 1996, 1999-2004, 2015, 2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -44,12 +44,12 @@ mpz_gcd_ui (mpz_ptr w, mpz_srcptr u, unsigned long int v) mp_limb_t vlimbs[2], wlimbs[2]; if (w == NULL) - { - PTR(lw) = wlimbs; - ALLOC(lw) = 2; - SIZ(lw) = 0; - w = lw; - } + { + PTR(lw) = wlimbs; + ALLOC(lw) = 2; + SIZ(lw) = 0; + w = lw; + } vlimbs[0] = v & GMP_NUMB_MASK; vlimbs[1] = v >> GMP_NUMB_BITS; PTR(vz) = vlimbs; diff --git a/tests/mpn/Makefile.am b/tests/mpn/Makefile.am index eb7993335..0e979a3ad 100644 --- a/tests/mpn/Makefile.am +++ b/tests/mpn/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to generate Makefile.in -# Copyright 2001-2003, 2009-2014, 2018 Free Software Foundation, Inc. +# Copyright 2001-2003, 2009-2014, 2018, 2019, 2021, 2022 Free Software Foundation, Inc. # # This file is part of the GNU MP Library test suite. # diff --git a/tune/common.c b/tune/common.c index 52c6d5eea..48da6c6ac 100644 --- a/tune/common.c +++ b/tune/common.c @@ -1,6 +1,6 @@ /* Shared speed subroutines. -Copyright 1999-2006, 2008-2017, 2019 Free Software Foundation, Inc. +Copyright 1999-2006, 2008-2017, 2019-2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/speed.c b/tune/speed.c index e0de68a56..f8909bc10 100644 --- a/tune/speed.c +++ b/tune/speed.c @@ -1,6 +1,6 @@ /* Speed measuring program. -Copyright 1999-2003, 2005, 2006, 2008-2021 Free Software Foundation, Inc. +Copyright 1999-2003, 2005, 2006, 2008-2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/speed.h b/tune/speed.h index 3155232c8..9c872b35c 100644 --- a/tune/speed.h +++ b/tune/speed.h @@ -1,6 +1,6 @@ /* Header for speed and threshold things. -Copyright 1999-2003, 2005, 2006, 2008-2017, 2019-2021 Free Software +Copyright 1999-2003, 2005, 2006, 2008-2017, 2019-2022 Free Software Foundation, Inc. This file is part of the GNU MP Library. -- cgit v1.2.1