diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-06-01 19:18:06 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-06-01 19:18:06 +0200 |
commit | 16cf85fa2c2da7ff73b2c72afcbb5de26a2bede2 (patch) | |
tree | f05d44a2f0ae9d2d30317b9693bff7bd91090513 /src/util.h | |
parent | 7fa8d758598407f3bf0beb0118dc122ea5340736 (diff) |
Revert "Include signal.h for sig_atomic_t in WIN32"
This reverts commit 88f14b999cb70f6c556633f2889e698a05305158.
Diffstat (limited to 'src/util.h')
-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 c6f8af4cdf..88a00d3ca1 100644 --- a/src/util.h +++ b/src/util.h @@ -28,7 +28,9 @@ #include <boost/signals2/signal.hpp> #include <boost/thread/exceptions.hpp> +#ifndef WIN32 #include <signal.h> +#endif static const bool DEFAULT_LOGTIMEMICROS = false; static const bool DEFAULT_LOGIPS = false; |