diff options
author | David Shaw <[email protected]> | 2003-05-24 17:54:56 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-05-24 17:54:56 +0000 |
commit | e152598106495a93ca8e895032db4f5b1e4a0d2f (patch) | |
tree | 7421d51802e163ccf2313527df270369039903db /mpi/mpi-inv.c | |
parent | * argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c, (diff) | |
download | gnupg-e152598106495a93ca8e895032db4f5b1e4a0d2f.tar.gz gnupg-e152598106495a93ca8e895032db4f5b1e4a0d2f.zip |
* mpicoder.c, mpi-inline.h, mpi-inv.c, mpiutil.c, mpih-div.c,
mpi-internal.h, mpi-scan.c: Edit all preprocessor instructions to remove
whitespace before the '#'. This is not required by C89, but there are
some compilers out there that don't like it.
Diffstat (limited to '')
-rw-r--r-- | mpi/mpi-inv.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/mpi/mpi-inv.c b/mpi/mpi-inv.c index ad41cf2a5..436d08533 100644 --- a/mpi/mpi-inv.c +++ b/mpi/mpi-inv.c @@ -32,7 +32,7 @@ void mpi_invm( MPI x, MPI a, MPI n ) { - #if 0 +#if 0 MPI u, v, u1, u2, u3, v1, v2, v3, q, t1, t2, t3; MPI ta, tb, tc; @@ -76,7 +76,7 @@ mpi_invm( MPI x, MPI a, MPI n ) mpi_free(t3); mpi_free(u); mpi_free(v); - #elif 0 +#elif 0 /* Extended Euclid's algorithm (See TAOPC Vol II, 4.5.2, Alg X) * modified according to Michael Penk's solution for Exercice 35 */ @@ -157,7 +157,7 @@ mpi_invm( MPI x, MPI a, MPI n ) mpi_free(t1); mpi_free(t2); mpi_free(t3); - #else +#else /* Extended Euclid's algorithm (See TAOPC Vol II, 4.5.2, Alg X) * modified according to Michael Penk's solution for Exercice 35 * with further enhancement */ @@ -263,8 +263,5 @@ mpi_invm( MPI x, MPI a, MPI n ) mpi_free(u); mpi_free(v); - #endif +#endif } - - - |