summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-02 02:52:46 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-02 02:52:46 +0200
commit41e788f34f2b2a698856530763feccebb5e853ea (patch)
treefa11c2fd4f4351bc1a50b7caf213e9a39ed85616 /compat.c
parentfeb22006fd102a10bbc899f44f62a8742a3539cb (diff)
downloadgmp-41e788f34f2b2a698856530763feccebb5e853ea.tar.gz
* gmp.texi, Makefile.am, compat.c: Amend version 3.2 to 4.0.
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/compat.c b/compat.c
index 1b57d94e8..53825c508 100644
--- a/compat.c
+++ b/compat.c
@@ -1,6 +1,5 @@
-/* Old function entrypoints retained for binary compatibility. */
+/* Old function entrypoints retained for binary compatibility.
-/*
Copyright 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,8 +17,7 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-MA 02111-1307, USA.
-*/
+MA 02111-1307, USA. */
#include <stdio.h>
#include "gmp.h"
@@ -36,7 +34,7 @@ __MPN (divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size)
/* mpn_divmod_1 was a function in gmp 3.0.1 and earlier, but marked obsolete
- in gmp 2 and 3. As of gmp 3.1 it's a macro calling mpn_divrem_1. */
+ in both gmp 2 and 3. As of gmp 3.1 it's a macro calling mpn_divrem_1. */
mp_limb_t
__MPN (divmod_1) (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t divisor)
{
@@ -45,7 +43,7 @@ __MPN (divmod_1) (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t divisor)
/* mpz_legendre was a separate function in gmp 3.1.1 and earlier, but as of
- 3.2 it's a #define alias for mpz_jacobi. */
+ 4.0 it's a #define alias for mpz_jacobi. */
int
__gmpz_legendre (mpz_srcptr a, mpz_srcptr b)
{