diff options
| author | danra <[email protected]> | 2017-08-25 22:13:07 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-25 22:13:07 +0300 |
| commit | eefc2f36f306bf522776c83e797fd235747b85b4 (patch) | |
| tree | a235084b78cbd50a4e021e7c98dc37541db52d0c /src | |
| parent | Merge #11112: [developer-notes] By default, declare single-argument construct... (diff) | |
| download | discoin-eefc2f36f306bf522776c83e797fd235747b85b4.tar.xz discoin-eefc2f36f306bf522776c83e797fd235747b85b4.zip | |
Move local include to before system includes
Prevents accidental missing includes and hidden dependencies in the local file.
Diffstat (limited to 'src')
| -rw-r--r-- | src/compat/endian.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compat/endian.h b/src/compat/endian.h index 79d6b2fdb..dbf178f53 100644 --- a/src/compat/endian.h +++ b/src/compat/endian.h @@ -9,10 +9,10 @@ #include "config/bitcoin-config.h" #endif -#include <stdint.h> - #include "compat/byteswap.h" +#include <stdint.h> + #if defined(HAVE_ENDIAN_H) #include <endian.h> #elif defined(HAVE_SYS_ENDIAN_H) |