bdiff: sort includes using clang-format
Differential Revision: https://phab.mercurial-scm.org/D1003
--- 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)))