We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2971c70 commit 4e6d9eaCopy full SHA for 4e6d9ea
1 file changed
wolfssl/wolfcrypt/settings.h
@@ -3775,10 +3775,18 @@ extern void uITRON4_free(void *p) ;
3775
#define WOLFSSL_NO_GETPID
3776
#endif /* WOLFSSL_NO_GETPID */
3777
#ifndef SIZEOF_LONG
3778
- #define SIZEOF_LONG 8
+ #ifdef __SIZEOF_LONG__
3779
+ #define SIZEOF_LONG __SIZEOF_LONG__
3780
+ #else
3781
+ #define SIZEOF_LONG 8
3782
+ #endif
3783
#endif
3784
#ifndef SIZEOF_LONG_LONG
- #define SIZEOF_LONG_LONG 8
3785
+ #ifdef __SIZEOF_LONG_LONG__
3786
+ #define SIZEOF_LONG_LONG __SIZEOF_LONG_LONG__
3787
3788
+ #define SIZEOF_LONG_LONG 8
3789
3790
3791
#define CHAR_BIT 8
3792
#ifndef WOLFSSL_SP_DIV_64
0 commit comments