bdiff: sort includes using clang-format
authorAugie Fackler <augie@google.com>
Wed, 04 Oct 2017 10:47:19 -0400
changeset 34626 ff4c9c6263de
parent 34625 f1c2552c2de7
child 34627 72985b390d7c
bdiff: sort includes using clang-format Differential Revision: https://phab.mercurial-scm.org/D1003
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 <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)))