[Python-checkins] r77637 - python/branches/py3k-cdecimal/Modules/cdecimal/fourstep.h
stefan.krah
python-checkins at python.org
Thu Jan 21 16:12:48 CET 2010
Author: stefan.krah
Date: Thu Jan 21 16:12:47 2010
New Revision: 77637
Log:
Change size_t to mpd_size_t.
Modified:
python/branches/py3k-cdecimal/Modules/cdecimal/fourstep.h
Modified: python/branches/py3k-cdecimal/Modules/cdecimal/fourstep.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/fourstep.h (original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/fourstep.h Thu Jan 21 16:12:47 2010
@@ -11,8 +11,8 @@
#include <stdio.h>
#include "mpdecimal.h"
-int four_step_fnt(mpd_uint_t *a, size_t n, int modnum, int ordered);
-int inv_four_step_fnt(mpd_uint_t *a, size_t n, int modnum, int ordered);
+int four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum, int ordered);
+int inv_four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum, int ordered);
#endif
More information about the Python-checkins
mailing list