Trent Mick: use size_t instead of int where appropriate (in strxfrm(),
to hold strlen() outcome).
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 68c6e6e..3e630bd 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -281,7 +281,7 @@
   PyObject* args;
 {
   char *s,*buf;
-  int n1,n2;
+  size_t n1,n2;
   PyObject *result;
   if(!PyArg_ParseTuple(args,"s:strxfrm",&s))
      return NULL;