[Python-checkins] r77649 - python/branches/py3k-cdecimal/Modules/cdecimal/sixstep.h

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


Author: stefan.krah
Date: Thu Jan 21 16:43:07 2010
New Revision: 77649

Log:
Change size_t to mpd_size_t.

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

Modified: python/branches/py3k-cdecimal/Modules/cdecimal/sixstep.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/sixstep.h	(original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/sixstep.h	Thu Jan 21 16:43:07 2010
@@ -12,8 +12,8 @@
 #include "mpdecimal.h"
 
 
-int six_step_fnt(mpd_uint_t *a, size_t n, int modnum, int ordered);
-int inv_six_step_fnt(mpd_uint_t *a, size_t n, int modnum, int ordered);
+int six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum, int ordered);
+int inv_six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum, int ordered);
 
 
 #endif


More information about the Python-checkins mailing list