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/mpadd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libmp/port/mpadd.c') diff --git a/src/libmp/port/mpadd.c b/src/libmp/port/mpadd.c index 6022a64e..48112506 100644 --- a/src/libmp/port/mpadd.c +++ b/src/libmp/port/mpadd.c @@ -2,14 +2,14 @@ #include #include "dat.h" -// sum = abs(b1) + abs(b2), i.e., add the magnitudes +/* sum = abs(b1) + abs(b2), i.e., add the magnitudes */ void mpmagadd(mpint *b1, mpint *b2, mpint *sum) { int m, n; mpint *t; - // get the sizes right + /* get the sizes right */ if(b2->top > b1->top){ t = b1; b1 = b2; @@ -34,7 +34,7 @@ mpmagadd(mpint *b1, mpint *b2, mpint *sum) mpnorm(sum); } -// sum = b1 + b2 +/* sum = b1 + b2 */ void mpadd(mpint *b1, mpint *b2, mpint *sum) { -- cgit v1.2.3