summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2023-12-11 18:52:03 -0800
committerJohn Wiegley <johnw@newartisans.com>2024-08-05 08:35:56 -0700
commit1b756fcd801ad5af3c49312392e45fec25105b16 (patch)
tree719d2931369d65f1677e8b27260d2d5b75cfcbee
parent46b08160c55f820016b3343418349750e2165610 (diff)
downloadfork-ledger-1b756fcd801ad5af3c49312392e45fec25105b16.tar.gz
fork-ledger-1b756fcd801ad5af3c49312392e45fec25105b16.tar.bz2
fork-ledger-1b756fcd801ad5af3c49312392e45fec25105b16.zip
Include stdint.h in sha512.cc
-rw-r--r--src/sha512.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sha512.cc b/src/sha512.cc
index bc469358..8754f966 100644
--- a/src/sha512.cc
+++ b/src/sha512.cc
@@ -41,6 +41,7 @@
* $Id: sha2.c,v 1.1 2001/11/08 00:01:51 adg Exp adg $
*/
#include <string.h> /* memcpy()/memset() or bcopy()/bzero() */
+#include <stdint.h> /* memcpy()/memset() or bcopy()/bzero() */
#include <assert.h> /* assert() */
extern "C" {