- 3436729B55463EBB34788A47A8856D47BA7EBC27F447C5FF73B8727897D7C468716D8313E9B613E7889A7C3DFFA6E577D77149AE8C4C415FB41CE3FC5CC6D852
+ BFF76A65E51957209D7753535337D23927A9A1ACC829C5BC5D9F266A1B8C004B555DAAE74E75B616CA0088F8BE0739F082D64EDC2387495B3675BEBD25658FD3
bitcoin/src/uint256.h
(11 . 17)(11 . 8)
587 #include <string>
588 #include <vector>
589
590 #if defined(_MSC_VER) || defined(__BORLANDC__)
591 typedef __int64 int64;
592 typedef unsigned __int64 uint64;
593 #else
594 typedef long long int64;
595 typedef unsigned long long uint64;
596 #endif
597 #if defined(_MSC_VER) && _MSC_VER < 1300
598 #define for if (false) ; else for
599 #endif
600
601
602 inline int Testuint256AdHoc(std::vector<std::string> vArg);
603