=================================================================== RCS file: /home/cvs/OpenXM_contrib/gmp/mpz/Attic/and.c,v retrieving revision 1.1.1.2 retrieving revision 1.1.1.3 diff -u -p -r1.1.1.2 -r1.1.1.3 --- OpenXM_contrib/gmp/mpz/Attic/and.c 2000/09/09 14:12:47 1.1.1.2 +++ OpenXM_contrib/gmp/mpz/Attic/and.c 2003/08/25 16:06:32 1.1.1.3 @@ -1,6 +1,6 @@ /* mpz_and -- Logical and. -Copyright (C) 1991, 1993, 1994, 1996, 1997, 2000 Free Software Foundation, +Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -24,14 +24,7 @@ MA 02111-1307, USA. */ #include "gmp-impl.h" void -#if __STDC__ mpz_and (mpz_ptr res, mpz_srcptr op1, mpz_srcptr op2) -#else -mpz_and (res, op1, op2) - mpz_ptr res; - mpz_srcptr op1; - mpz_srcptr op2; -#endif { mp_srcptr op1_ptr, op2_ptr; mp_size_t op1_size, op2_size;