diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-05-25 08:48:25 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-05-25 08:48:25 -0700 |
commit | 09e437ba4e5cb7fcc53020c1ceb2451e0ff1606b (patch) | |
tree | 8d67da8a61f35cd06b14318bb196ea75400390b0 | |
parent | ef9acc5124459b111d8643323a71d8198d0eaae8 (diff) | |
parent | 65ec9eab2bf1aea0bd580e1d972f54163b58b332 (diff) |
Merge pull request #2696 from robbak/util_h-Add_stdarg_includev0.8.2
Explicitly #include stdarg.h, for access to va_list
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 3d25364505..51a694483a 100644 --- a/src/util.h +++ b/src/util.h @@ -7,6 +7,8 @@ #include "uint256.h" +#include <stdarg.h> + #ifndef WIN32 #include <sys/types.h> #include <sys/time.h> |