Skip to content

Commit eefc2f3

Browse files
authored
Move local include to before system includes
Prevents accidental missing includes and hidden dependencies in the local file.
1 parent 3f726c9 commit eefc2f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compat/endian.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
#include "config/bitcoin-config.h"
1010
#endif
1111

12-
#include <stdint.h>
13-
1412
#include "compat/byteswap.h"
1513

14+
#include <stdint.h>
15+
1616
#if defined(HAVE_ENDIAN_H)
1717
#include <endian.h>
1818
#elif defined(HAVE_SYS_ENDIAN_H)

0 commit comments

Comments
 (0)