From cc4894aced863e9446ece68f69c422b166011606 Mon Sep 17 00:00:00 2001 From: Moritz Schulte Date: Tue, 17 Jun 2003 17:41:00 +0000 Subject: 2003-06-16 Moritz Schulte * mpi-add.c: Replace last occurences of old type names with newer names (i.e. replace MPI with gcry_mpi_t). * mpi-bit.c: Likewise. * mpi-cmp.c: Likewise. * mpi-div.c: Likewise. * mpi-gcd.c: Likewise. * mpi-internal.h: Likewise. * mpi-inv.c: Likewise. * mpi-mpow.c: Likewise. * mpi-mul.c: Likewise. * mpi-pow.c: Likewise. * mpi-scan.c: Likewise. * mpicoder.c: Likewise. * mpiutil.c: Likewise. --- mpi/mpi-gcd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mpi/mpi-gcd.c') diff --git a/mpi/mpi-gcd.c b/mpi/mpi-gcd.c index 8819871a..51841e78 100644 --- a/mpi/mpi-gcd.c +++ b/mpi/mpi-gcd.c @@ -1,5 +1,5 @@ /* mpi-gcd.c - MPI functions - * Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + * Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. * * This file is part of Libgcrypt. * @@ -28,9 +28,9 @@ * Return: true if this 1, false in all other cases */ int -gcry_mpi_gcd( MPI g, MPI xa, MPI xb ) +gcry_mpi_gcd( gcry_mpi_t g, gcry_mpi_t xa, gcry_mpi_t xb ) { - MPI a, b; + gcry_mpi_t a, b; a = mpi_copy(xa); b = mpi_copy(xb); -- cgit v1.2.1