diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-06-06 15:45:21 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-06-12 19:05:51 -0400 |
commit | 72c3f36ca44a4be4d237095fd14e1ff862af5864 (patch) | |
tree | cd320e7996cf1478686679fc3e87fc4a9eee3a1d /src/cryptonote_core/account.cpp | |
parent | builds, but doesn't link. other than that, electrum-style recovery implement... (diff) | |
download | monero-72c3f36ca44a4be4d237095fd14e1ff862af5864.tar.xz |
fixed some pointer- and loop-based derps
Diffstat (limited to 'src/cryptonote_core/account.cpp')
-rw-r--r-- | src/cryptonote_core/account.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptonote_core/account.cpp b/src/cryptonote_core/account.cpp index bd47c8ba4..f4de36738 100644 --- a/src/cryptonote_core/account.cpp +++ b/src/cryptonote_core/account.cpp @@ -10,7 +10,10 @@ #include "account.h" #include "warnings.h" #include "crypto/crypto.h" +extern "C" +{ #include "crypto/blake256.h" +} #include "cryptonote_core/cryptonote_basic_impl.h" #include "cryptonote_core/cryptonote_format_utils.h" using namespace std; |