* libm/common/sf_lround.c (round): Change name to: (lround).

* libm/common/sf_remquo.c (remquo): Pass all arguemnts to
	remquof.
This commit is contained in:
Thomas Fitzsimmons 2002-06-19 17:15:47 +00:00
parent 03a2ce9a36
commit 7f55c08c86
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2002-06-19 J"orn Rennecke <joern.rennecke@superh.com>
* libm/common/sf_lround.c (round): Change name to: (lround).
* libm/common/sf_remquo.c (remquo): Pass all arguemnts to
remquof.
2002-06-18 Thomas Fitzsimmons <fitzsim@redhat.com>
* testsuite/lib/passfail.exp (newlib_pass_fail_all): New

View File

@ -50,13 +50,13 @@
#ifdef _DOUBLE_IS_32BITS
#ifdef __STDC__
long int round(double x)
long int lround(double x)
#else
long int round(x)
long int lround(x)
double x;
#endif
{
return (double) roundf((float) x);
return (double) lroundf((float) x);
}
#endif /* defined(_DOUBLE_IS_32BITS) */

View File

@ -44,7 +44,7 @@
int *quo;
#endif
{
return (double) remquof((float) x);
return (double) remquof((float) x, (float) y, quo);
}
#endif /* defined(_DOUBLE_IS_32BITS) */