Renamed prototype parameter name to avoid gcc warnings.

This commit is contained in:
Werner Koch 2004-04-27 08:24:37 +00:00
parent e0e5aa214a
commit 6b3a008e46
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-04-27 Werner Koch <wk@gnupg.org>
* mpi.h: Renamed prototype parameter name to avoid gcc warnings.
2004-03-04 David Shaw <dshaw@jabberwocky.com>
* iobuf.h: Remove iobuf_set_block_mode() and

View File

@ -166,7 +166,7 @@ int mpi_gcd( MPI g, MPI a, MPI b );
/*-- mpi-pow.c --*/
void mpi_pow( MPI w, MPI u, MPI v);
void mpi_powm( MPI res, MPI base, MPI exp, MPI mod);
void mpi_powm( MPI res, MPI base, MPI exponent, MPI mod);
/*-- mpi-mpow.c --*/
void mpi_mulpowm( MPI res, MPI *basearray, MPI *exparray, MPI mod);