Merged revisions 70499 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70499 | hirokazu.yamamoto | 2009-03-21 19:32:52 +0900 | 1 line

  There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.
........
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 03c65e3..bcae239 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -4217,7 +4217,7 @@
 
 /* --- MBCS codecs for Windows -------------------------------------------- */
 
-#if SIZEOF_INT < SIZEOF_SSIZE_T
+#if SIZEOF_INT < SIZEOF_SIZE_T
 #define NEED_RETRY
 #endif