aboutsummaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/util.h b/util.h
index bf8cf300fd..f61896f40b 100644
--- a/util.h
+++ b/util.h
@@ -143,6 +143,7 @@ extern char pszSetDataDir[MAX_PATH];
extern bool fShutdown;
extern bool fDaemon;
extern bool fCommandLine;
+extern string strWarning;
void RandAddSeed();
void RandAddSeedPerfmon();
@@ -298,6 +299,11 @@ inline int64 roundint64(double d)
return (int64)(d > 0 ? d + 0.5 : d - 0.5);
}
+inline int64 abs64(int64 n)
+{
+ return (n >= 0 ? n : -n);
+}
+
template<typename T>
string HexStr(const T itbegin, const T itend, bool fSpaces=true)
{