diff options
| author | Philip Kaufmann <[email protected]> | 2015-03-27 13:19:49 +0100 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-05-14 01:02:01 -0400 |
| commit | 5207f33f45ec477a46e742434579805b0b7391b8 (patch) | |
| tree | b95be4cc8b07f84b3fdd57afc5a57aa0405eb7e8 /src/util.cpp | |
| parent | remove unneeded incude of wallet/db.h from rpcmining.cpp (diff) | |
| download | discoin-5207f33f45ec477a46e742434579805b0b7391b8.tar.xz discoin-5207f33f45ec477a46e742434579805b0b7391b8.zip | |
fix header include groups
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util.cpp b/src/util.cpp index da5b259ae..bfb95c904 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -7,11 +7,6 @@ #include "config/bitcoin-config.h" #endif -#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)) -#include <pthread.h> -#include <pthread_np.h> -#endif - #include "util.h" #include "chainparamsbase.h" @@ -23,6 +18,11 @@ #include <stdarg.h> +#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)) +#include <pthread.h> +#include <pthread_np.h> +#endif + #ifndef WIN32 // for posix_fallocate #ifdef __linux__ |