[Python-checkins] r77631 - python/branches/py3k-cdecimal/Modules/cdecimal/crt.h

stefan.krah python-checkins at python.org
Thu Jan 21 16:07:22 CET 2010


Author: stefan.krah
Date: Thu Jan 21 16:07:22 2010
New Revision: 77631

Log:
Change size_t to mpd_size_t.

Modified:
   python/branches/py3k-cdecimal/Modules/cdecimal/crt.h

Modified: python/branches/py3k-cdecimal/Modules/cdecimal/crt.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/crt.h	(original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/crt.h	Thu Jan 21 16:07:22 2010
@@ -11,7 +11,7 @@
 #include <stdio.h>
 #include "mpdecimal.h"
 
-void crt3(mpd_uint_t *x1, mpd_uint_t *x2, mpd_uint_t *x3, size_t nmemb);
+void crt3(mpd_uint_t *x1, mpd_uint_t *x2, mpd_uint_t *x3, mpd_size_t nmemb);
 
 
 #endif


More information about the Python-checkins mailing list