mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-11 00:20:51 +02:00
Created the new macro W64LIT_FORCE_LONG_LONG
This commit is contained in:
@@ -634,6 +634,7 @@ USE_TLSV13
|
||||
USE_WINDOWS_API
|
||||
USE_WOLF_STRNSTR
|
||||
USS_API
|
||||
W64LIT_FORCE_LONG_LONG
|
||||
WC_AESXTS_STREAM_NO_REQUEST_ACCOUNTING
|
||||
WC_AES_BS_WORD_SIZE
|
||||
WC_AES_GCM_ALLOW_NONSTANDARD_TAG_LENGTH
|
||||
|
||||
@@ -322,7 +322,7 @@ typedef const char wcchar[];
|
||||
typedef unsigned long long word64;
|
||||
#elif defined(SIZEOF_LONG) && SIZEOF_LONG == 8
|
||||
#define WORD64_AVAILABLE
|
||||
#ifdef WOLF_C89
|
||||
#if defined(WOLF_C89) && !defined(W64LIT_FORCE_LONG_LONG)
|
||||
#define W64LIT(x) x##UL
|
||||
#define SW64LIT(x) x##L
|
||||
#else
|
||||
@@ -333,7 +333,7 @@ typedef const char wcchar[];
|
||||
typedef unsigned long word64;
|
||||
#elif defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG == 8
|
||||
#define WORD64_AVAILABLE
|
||||
#ifdef WOLF_C89
|
||||
#if defined(WOLF_C89) && !defined(W64LIT_FORCE_LONG_LONG)
|
||||
#define W64LIT(x) x##UL
|
||||
#define SW64LIT(x) x##L
|
||||
#else
|
||||
@@ -344,7 +344,7 @@ typedef const char wcchar[];
|
||||
typedef unsigned long long word64;
|
||||
#elif defined(__SIZEOF_LONG_LONG__) && __SIZEOF_LONG_LONG__ == 8
|
||||
#define WORD64_AVAILABLE
|
||||
#ifdef WOLF_C89
|
||||
#if defined(WOLF_C89) && !defined(W64LIT_FORCE_LONG_LONG)
|
||||
#define W64LIT(x) x##UL
|
||||
#define SW64LIT(x) x##L
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user