summaryrefslogtreecommitdiff
path: root/mpi/mpi-inv.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/mpi-inv.c')
-rw-r--r--mpi/mpi-inv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mpi/mpi-inv.c b/mpi/mpi-inv.c
index 80efd62d..b44cb676 100644
--- a/mpi/mpi-inv.c
+++ b/mpi/mpi-inv.c
@@ -32,7 +32,7 @@
void
_gcry_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 @@ _gcry_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 TAOCP Vol II, 4.5.2, Alg X)
* modified according to Michael Penk's solution for Exercise 35 */
@@ -157,7 +157,7 @@ _gcry_mpi_invm( MPI x, MPI a, MPI n )
mpi_free(t1);
mpi_free(t2);
mpi_free(t3);
- #else
+#else
/* Extended Euclid's algorithm (See TAOCP Vol II, 4.5.2, Alg X)
* modified according to Michael Penk's solution for Exercise 35
* with further enhancement */
@@ -263,7 +263,7 @@ _gcry_mpi_invm( MPI x, MPI a, MPI n )
mpi_free(u);
mpi_free(v);
- #endif
+#endif
}