Add missing includes. (Fix bulding under GCC 4.7)
authorTimothy Redaelli <timothy.redaelli@gmail.com>
Fri, 20 Apr 2012 10:50:57 +0000 (12:50 +0200)
committerTimothy Redaelli <timothy.redaelli@gmail.com>
Fri, 20 Apr 2012 10:50:57 +0000 (12:50 +0200)
src/allocators.h
src/uint256.h

index cdea66d..fa9534b 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef BITCOIN_ALLOCATORS_H
 #define BITCOIN_ALLOCATORS_H
 
+#include <string.h>
 #include <string>
 
 #ifdef WIN32
index bf3c55b..4208172 100644 (file)
@@ -6,6 +6,7 @@
 #define BITCOIN_UINT256_H
 
 #include <limits.h>
+#include <stdio.h>
 #include <string.h>
 #include <string>
 #include <vector>