diff options
-rw-r--r-- | mpz/cmpabs.c | 3 | ||||
-rw-r--r-- | mpz/cmpabs_ui.c | 3 | ||||
-rw-r--r-- | mpz/sub_ui.c | 2 | ||||
-rw-r--r-- | mpz/tdiv_qr_ui.c | 2 | ||||
-rw-r--r-- | mpz/tdiv_r_ui.c | 2 | ||||
-rw-r--r-- | mpz/tdiv_ui.c | 3 |
6 files changed, 9 insertions, 6 deletions
diff --git a/mpz/cmpabs.c b/mpz/cmpabs.c index 71bc4237f..528e7bf3b 100644 --- a/mpz/cmpabs.c +++ b/mpz/cmpabs.c @@ -1,7 +1,8 @@ /* mpz_cmpabs(u,v) -- Compare U, V. Return postive, zero, or negative based on if U > V, U == V, or U < V. -Copyright (C) 1991, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1996, 1997, 2000 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/cmpabs_ui.c b/mpz/cmpabs_ui.c index 56a675d0f..913562d3c 100644 --- a/mpz/cmpabs_ui.c +++ b/mpz/cmpabs_ui.c @@ -1,7 +1,8 @@ /* mpz_cmpabs_ui.c -- Compare a mpz_t a with an mp_limb_t b. Return positive, zero, or negative based on if a > b, a == b, or a < b. -Copyright (C) 1991, 1993, 1994, 1995, 1997 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1995, 1997, 2000 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/sub_ui.c b/mpz/sub_ui.c index 58ef8bb07..8f0cd3576 100644 --- a/mpz/sub_ui.c +++ b/mpz/sub_ui.c @@ -1,6 +1,6 @@ /* mpz_sub_ui -- Subtract an unsigned one-word integer from an MP_INT. -Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1996, 1999 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/tdiv_qr_ui.c b/mpz/tdiv_qr_ui.c index 96633124c..e4f7f963d 100644 --- a/mpz/tdiv_qr_ui.c +++ b/mpz/tdiv_qr_ui.c @@ -2,7 +2,7 @@ Set QUOT to DIVIDEND / SHORT_DIVISOR and REM to DIVIDEND mod SHORT_DIVISOR. -Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/tdiv_r_ui.c b/mpz/tdiv_r_ui.c index 161f02a7a..60d9eed26 100644 --- a/mpz/tdiv_r_ui.c +++ b/mpz/tdiv_r_ui.c @@ -1,7 +1,7 @@ /* mpz_tdiv_r_ui(rem, dividend, divisor_limb) -- Set REM to DIVDEND mod DIVISOR_LIMB. -Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/tdiv_ui.c b/mpz/tdiv_ui.c index 6905da3f8..db2a223ca 100644 --- a/mpz/tdiv_ui.c +++ b/mpz/tdiv_ui.c @@ -1,7 +1,8 @@ /* mpz_tdiv_ui(dividend, divisor_limb) -- Return DIVDEND mod DIVISOR_LIMB. -Copyright (C) 1991, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. +Copyright (C) 1991, 1993, 1994, 1996, 1997, 1998 Free Software Foundation, +Inc. This file is part of the GNU MP Library. |