summaryrefslogtreecommitdiff
path: root/src/mpi.h
diff options
context:
space:
mode:
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 );