Move local include to before system includes

Prevents accidental missing includes and hidden dependencies in the local file.
This commit is contained in:
danra 2017-08-25 22:13:07 +03:00 committed by GitHub
parent 3f726c99f8
commit eefc2f36f3
1 changed files with 2 additions and 2 deletions

View File

@ -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)