mercurial/bdiff.c
changeset 34626 ff4c9c6263de
parent 30461 d195fa651b51
child 34628 72b24ac81d5d
--- 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)))