Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d8b69e commit f20ca76Copy full SHA for f20ca76
1 file changed
Modules/_sha3/sha3module.c
@@ -57,6 +57,8 @@
57
typedef uint64_t UINT64;
58
typedef unsigned char UINT8;
59
#endif
60
+// kcp/KeccakP-1600-opt64.c doesn't need to define UINT8
61
+#define NOT_PYTHON 0
62
63
/* replacement for brg_endian.h */
64
#define IS_LITTLE_ENDIAN 1234
@@ -69,7 +71,7 @@
69
71
70
72
73
/* Prevent bus errors on platforms requiring aligned accesses such ARM. */
-#if HAVE_ALIGNED_REQUIRED && !defined(NO_MISALIGNED_ACCESSES)
74
+#if defined(HAVE_ALIGNED_REQUIRED) && !defined(NO_MISALIGNED_ACCESSES)
75
#define NO_MISALIGNED_ACCESSES
76
77
0 commit comments