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