fix compiler warnings with MP_16BIT

This commit is contained in:
Steffen Jaeckel 2014-09-23 22:55:08 +02:00
parent b0c385afb6
commit 78b8a772e4

View File

@ -65,7 +65,7 @@ extern "C" {
typedef unsigned short mp_word;
#elif defined(MP_16BIT)
typedef unsigned short mp_digit;
typedef unsigned long mp_word;
typedef unsigned int mp_word;
#elif defined(MP_64BIT)
/* for GCC only on supported platforms */
#ifndef CRYPT