From cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 1 Apr 2006 19:24:03 +0000 Subject: Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. --- src/libmp/port/strtomp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libmp/port/strtomp.c') diff --git a/src/libmp/port/strtomp.c b/src/libmp/port/strtomp.c index e84db799..5dced61b 100644 --- a/src/libmp/port/strtomp.c +++ b/src/libmp/port/strtomp.c @@ -84,7 +84,7 @@ from10(char *a, mpint *b) b->top = 0; for(;;){ - // do a billion at a time in native arithmetic + /* do a billion at a time in native arithmetic */ x = 0; for(i = 0; i < 9; i++){ y = tab.t10[*(uchar*)a]; @@ -97,7 +97,7 @@ from10(char *a, mpint *b) if(i == 0) break; - // accumulate into mpint + /* accumulate into mpint */ uitomp(mppow10[i], pow); uitomp(x, r); mpmul(b, pow, b); @@ -191,7 +191,7 @@ strtomp(char *a, char **pp, int base, mpint *b) break; } - // if no characters parsed, there wasn't a number to convert + /* if no characters parsed, there wasn't a number to convert */ if(e == a) return nil; -- cgit v1.2.3