# HG changeset patch # User Augie Fackler # Date 2017-10-04 14:47:19 # Node ID ff4c9c6263de7d3469bf308b7402f8a116ebd320 # Parent f1c2552c2de78a2f8a0c0ded099ccb200aad27d0 bdiff: sort includes using clang-format Differential Revision: https://phab.mercurial-scm.org/D1003 diff --git a/mercurial/bdiff.c b/mercurial/bdiff.c --- a/mercurial/bdiff.c +++ b/mercurial/bdiff.c @@ -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)))