bdiff: use ssize_t in favor of Py_ssize_t in cpython-unaware locations
authorMaciej Fijalkowski <fijall@gmail.com>
Wed, 13 Jul 2016 09:36:24 +0200
changeset 29539 666832b9e154
parent 29538 df7d8ea90695
child 29540 4ce1fc91e30a
bdiff: use ssize_t in favor of Py_ssize_t in cpython-unaware locations This function and struct will be exposed via cffi, so we need to remove the cpython API dependency they currently have.
mercurial/bdiff.c
--- 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;