diff options
author | John Wiegley <johnw@newartisans.com> | 2023-12-12 11:00:14 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2024-08-05 08:35:56 -0700 |
commit | 5c694ed21d940ab59ee157b965fcd36158381736 (patch) | |
tree | 7b05dfc0b2ff43e37f1cb684e9da00b64b67e1fd | |
parent | b2b4d9c74b4d7f1a026ebebe2c6e79c42b2f166b (diff) | |
download | fork-ledger-5c694ed21d940ab59ee157b965fcd36158381736.tar.gz fork-ledger-5c694ed21d940ab59ee157b965fcd36158381736.tar.bz2 fork-ledger-5c694ed21d940ab59ee157b965fcd36158381736.zip |
Add two missing system headers to sha512.cc
-rw-r--r-- | src/sha512.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sha512.cc b/src/sha512.cc index 2573524c..3c61070b 100644 --- a/src/sha512.cc +++ b/src/sha512.cc @@ -42,6 +42,8 @@ */ #include <string.h> /* memcpy()/memset() or bcopy()/bzero() */ #include <assert.h> /* assert() */ +#include <sys/types.h> +#include <stdint.h> extern "C" { |