summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2023-09-16 09:19:57 -0400
committerPaul Duncan <pabs@pablotron.org>2023-09-16 09:19:57 -0400
commited3ca1da539d80505d3b40353bf2b31498f50a9b (patch)
treebb9eebdb2b335fab5d56d22c34ac67932fdb7d7a
parent0cc177de30f8acca210042ac68c1450883ecd2e3 (diff)
downloadsha3-ed3ca1da539d80505d3b40353bf2b31498f50a9b.tar.bz2
sha3-ed3ca1da539d80505d3b40353bf2b31498f50a9b.zip
sha3.h: add stddef
-rw-r--r--sha3.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sha3.h b/sha3.h
index 7ee1c11..ed59bed 100644
--- a/sha3.h
+++ b/sha3.h
@@ -36,7 +36,8 @@
extern "C" {
#endif /* __cplusplus */
-#include <stdint.h>
+#include <stddef.h> // size_t
+#include <stdint.h> // uint8_t, uint64_t
// Internal SHA-3 state.
typedef union {