# HG changeset patch # User Augie Fackler # Date 1507128439 14400 # Node ID ff4c9c6263de7d3469bf308b7402f8a116ebd320 # Parent f1c2552c2de78a2f8a0c0ded099ccb200aad27d0 bdiff: sort includes using clang-format Differential Revision: https://phab.mercurial-scm.org/D1003 diff -r f1c2552c2de7 -r ff4c9c6263de mercurial/bdiff.c --- a/mercurial/bdiff.c Wed Oct 11 01:47:00 2017 +0200 +++ b/mercurial/bdiff.c Wed Oct 04 10:47:19 2017 -0400 @@ -9,13 +9,13 @@ Based roughly on Python difflib */ +#include #include #include -#include +#include "bdiff.h" +#include "bitmanipulation.h" #include "compat.h" -#include "bitmanipulation.h" -#include "bdiff.h" /* Hash implementation from diffutils */ #define ROL(v, n) ((v) << (n) | (v) >> (sizeof(v) * CHAR_BIT - (n)))