summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2023-12-12 11:00:14 -0800
committerJohn Wiegley <johnw@newartisans.com>2024-08-05 08:35:56 -0700
commit5c694ed21d940ab59ee157b965fcd36158381736 (patch)
tree7b05dfc0b2ff43e37f1cb684e9da00b64b67e1fd
parentb2b4d9c74b4d7f1a026ebebe2c6e79c42b2f166b (diff)
downloadfork-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.cc2
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" {