diff options
author | Paul Duncan <pabs@pablotron.org> | 2023-09-16 09:19:57 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2023-09-16 09:19:57 -0400 |
commit | ed3ca1da539d80505d3b40353bf2b31498f50a9b (patch) | |
tree | bb9eebdb2b335fab5d56d22c34ac67932fdb7d7a /sha3.h | |
parent | 0cc177de30f8acca210042ac68c1450883ecd2e3 (diff) | |
download | sha3-ed3ca1da539d80505d3b40353bf2b31498f50a9b.tar.bz2 sha3-ed3ca1da539d80505d3b40353bf2b31498f50a9b.zip |
sha3.h: add stddef
Diffstat (limited to 'sha3.h')
-rw-r--r-- | sha3.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 { |