From: Ulf Möller Date: Mon, 10 Dec 2001 18:52:06 +0000 (+0000) Subject: name confusion with HP library function prototype (?) X-Git-Tag: OpenSSL_0_9_6d-beta1~83^2~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31106cc750c23e3924719acb0882bfadb8087ebd;p=openssl name confusion with HP library function prototype (?) --- diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 3b0edcf3d0..b7e268f092 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -569,7 +569,7 @@ pow10(int exp) } static long -round(LDOUBLE value) +roundv(LDOUBLE value) { long intpart; intpart = (long) value; @@ -621,7 +621,7 @@ fmtfp( /* we "cheat" by converting the fractional part to integer by multiplying by a factor of 10 */ - fracpart = round((pow10(max)) * (ufvalue - intpart)); + fracpart = roundv((pow10(max)) * (ufvalue - intpart)); if (fracpart >= pow10(max)) { intpart++;