]> sourceware.org Git - newlib-cygwin.git/commitdiff
* libm/common/sf_lround.c (round): Change name to: (lround).
authorThomas Fitzsimmons <fitzsim@redhat.com>
Wed, 19 Jun 2002 17:15:47 +0000 (17:15 +0000)
committerThomas Fitzsimmons <fitzsim@redhat.com>
Wed, 19 Jun 2002 17:15:47 +0000 (17:15 +0000)
* libm/common/sf_remquo.c (remquo): Pass all arguemnts to
remquof.

newlib/ChangeLog
newlib/libm/common/sf_lround.c
newlib/libm/common/sf_remquo.c

index cc0b5ba969f34d7673702551d0976cb01a4a2611..8d0b6df0ff0818a6cc65f43d7c8ef7f6d8c7140e 100644 (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
index e2e4227e25511c2a58939c3d34c407bcf1aa9719..d715423e41fc7e4bff08df23e08b553ea99bfad0 100644 (file)
 #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) */
index f620f518ebdf8f4b41ee20e4afba1f6695fe54c0..41c2038d4e79667cd4612c58fa286ed28da1e34e 100644 (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) */
This page took 0.046421 seconds and 5 git commands to generate.