Mercurial > public > mercurial-scm > hg-stable
diff mercurial/bdiff.c @ 34626:ff4c9c6263de
bdiff: sort includes using clang-format
Differential Revision: https://phab.mercurial-scm.org/D1003
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 04 Oct 2017 10:47:19 -0400 |
parents | d195fa651b51 |
children | 72b24ac81d5d |
line wrap: on
line diff
--- 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 <limits.h> #include <stdlib.h> #include <string.h> -#include <limits.h> +#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)))