[Python-checkins] r77629 - python/branches/py3k-cdecimal/Modules/cdecimal/convolute.h

stefan.krah python-checkins at python.org
Thu Jan 21 16:06:34 CET 2010


Author: stefan.krah
Date: Thu Jan 21 16:06:34 2010
New Revision: 77629

Log:
Change size_t to mpd_size_t.

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

Modified: python/branches/py3k-cdecimal/Modules/cdecimal/convolute.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/convolute.h	(original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/convolute.h	Thu Jan 21 16:06:34 2010
@@ -13,8 +13,8 @@
 
 #define SIX_STEP_THRESHOLD 4096
 
-int fnt_convolute(mpd_uint_t *c1, mpd_uint_t *c2, size_t n, int modnum);
-int fnt_autoconvolute(mpd_uint_t *c1, size_t n, int modnum);
+int fnt_convolute(mpd_uint_t *c1, mpd_uint_t *c2, mpd_size_t n, int modnum);
+int fnt_autoconvolute(mpd_uint_t *c1, mpd_size_t n, int modnum);
 
 
 #endif


More information about the Python-checkins mailing list