changeset 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 f1c2552c2de7
children 72985b390d7c
files mercurial/bdiff.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
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)))