forked from wolfSSL/wolfssl
SP int: default to 16 bit word size when NO_64BIT defined
This commit is contained in:
@ -213,7 +213,9 @@ extern "C" {
|
|||||||
* with compiler.
|
* with compiler.
|
||||||
*/
|
*/
|
||||||
#ifndef SP_WORD_SIZE
|
#ifndef SP_WORD_SIZE
|
||||||
#if defined(NO_64BIT) || !defined(HAVE___UINT128_T)
|
#ifdef NO_64BIT
|
||||||
|
#define SP_WORD_SIZE 16
|
||||||
|
#elif !defined(HAVE___UINT128_T)
|
||||||
#define SP_WORD_SIZE 32
|
#define SP_WORD_SIZE 32
|
||||||
#else
|
#else
|
||||||
#define SP_WORD_SIZE 64
|
#define SP_WORD_SIZE 64
|
||||||
|
Reference in New Issue
Block a user