mercurial/bdiff.c
changeset 29539 666832b9e154
parent 29444 284d742e5611
child 29540 4ce1fc91e30a
--- a/mercurial/bdiff.c	Thu Jul 14 12:33:44 2016 +0800
+++ b/mercurial/bdiff.c	Wed Jul 13 09:36:24 2016 +0200
@@ -15,12 +15,13 @@
 #include <string.h>
 #include <limits.h>
 
+#include "compat.h"
 #include "util.h"
 #include "bitmanipulation.h"
 
 struct line {
 	int hash, n, e;
-	Py_ssize_t len;
+	ssize_t len;
 	const char *l;
 };
 
@@ -34,7 +35,7 @@
 	struct hunk *next;
 };
 
-static int splitlines(const char *a, Py_ssize_t len, struct line **lr)
+static int splitlines(const char *a, ssize_t len, struct line **lr)
 {
 	unsigned hash;
 	int i;