diff options
author | Robert Backhaus <robbak@robbak.com> | 2013-05-24 23:45:08 +1000 |
---|---|---|
committer | Robert Backhaus <robbak@robbak.com> | 2013-05-24 23:45:08 +1000 |
commit | 65ec9eab2bf1aea0bd580e1d972f54163b58b332 (patch) | |
tree | ef8fa58977782835751ecd895e69434d8b9534a0 | |
parent | 36dc41f4273c59e570978c603e48bbec43f3d0a1 (diff) |
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> |