argon2-20181109-monocypherblock.diff at [3dc3a41cee]

File build/argon2/patches/argon2-20181109-monocypherblock.diff artifact c3c9570f44 part of check-in 3dc3a41cee


--- a/core.h
+++ b/core.h
@@ -49,7 +49,9 @@
  * Memory blocks can be copied, XORed. Internal words can be accessed by [] (no
  * bounds checking).
  */
-typedef struct block_ { uint64_t v[ARGON2_QWORDS_IN_BLOCK]; } block;
+#ifndef TCL_NANO_AMALGAMATION
+typedef struct block_ { uint64_t a[ARGON2_QWORDS_IN_BLOCK]; } block;
+#endif
 
 /*****************Functions that work with the block******************/