From 33bb64e4d7fa47a1794c800180a1213230280c0e Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 10 Mar 2013 21:24:07 -0700 Subject: [PATCH] Missing from previous commit. --- src/cpp/ripple/Amount.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpp/ripple/Amount.cpp b/src/cpp/ripple/Amount.cpp index c228fba65..122787e71 100644 --- a/src/cpp/ripple/Amount.cpp +++ b/src/cpp/ripple/Amount.cpp @@ -21,6 +21,7 @@ static const uint64 tenTo17 = tenTo14 * 1000; #if (ULONG_MAX > UINT_MAX) #define BN_add_word64(bn, word) BN_add_word(bn, word) +#define BN_sub_word64(bn, word) BN_sub_word(bn, word) #define BN_mul_word64(bn, word) BN_mul_word(bn, word) #define BN_div_word64(bn, word) BN_div_word(bn, word) #else