summaryrefslogtreecommitdiff
path: root/src/mpi.h
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2000-12-19 21:24:41 +0000
committerWerner Koch <wk@gnupg.org>2000-12-19 21:24:41 +0000
commit6626bbbab524a1ea01fdf8694d84777790b98757 (patch)
tree3c4f8ebb6be4e53d6df6b2f2e21d9a1608f52d20 /src/mpi.h
parent1aeb5115e4ac73053bc8f6d94bdbc072ba597b2e (diff)
downloadlibgcrypt-6626bbbab524a1ea01fdf8694d84777790b98757.tar.gz
Compiles again
Diffstat (limited to 'src/mpi.h')
-rw-r--r--src/mpi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mpi.h b/src/mpi.h
index 8680cf96..f8279854 100644
--- a/src/mpi.h
+++ b/src/mpi.h
@@ -35,6 +35,7 @@
#include "memory.h"
#include "../mpi/mpi-asm-defs.h"
+#ifndef BITS_PER_MPI_LIMB
#if BYTES_PER_MPI_LIMB == SIZEOF_UNSIGNED_INT
typedef unsigned int mpi_limb_t;
typedef signed int mpi_limb_signed_t;
@@ -51,6 +52,7 @@
#error BYTES_PER_MPI_LIMB does not match any C type
#endif
#define BITS_PER_MPI_LIMB (8*BYTES_PER_MPI_LIMB)
+#endif /*BITS_PER_MPI_LIMB*/
#define DBG_MPI g10_get_debug_flag( 2 );