Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 27 Feb 1998 16:53:21 +0000 (16:53 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 27 Feb 1998 16:53:21 +0000 (16:53 +0000)
* Makefile (distribute): Add README.libm.

1998-02-27  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

* time/clocktest.c (main): Correct typo: "--" -> "==".

1998-02-25 20:53  H.J. Lu  <hjl@gnu.org>

* sysdeps/alpha/fpu/bits/mathinline.h (atan): Removed the bogus
inline function.
(copysignf, __copysignf, copysign, fabsf, __fabsf, fabs): New
inline functions.

* math/libm.map (__atan2): Added.

1998-02-27  Ulrich Drepper  <drepper@cygnus.com>

BUGS
ChangeLog
Makefile
time/clocktest.c

diff --git a/BUGS b/BUGS
index 9c1eac3..546fab2 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -1,7 +1,7 @@
            List of known bugs (certainly very incomplete)
            ----------------------------------------------
 
-Time-stamp: <1998-02-26T09:19:15-0800 drepper>
+Time-stamp: <1998-02-27T13:05:49-0800 drepper>
 
 This following list contains those bugs which I'm aware of.  Please
 make sure that bugs you report are not listed here.  If you can fix one
@@ -60,8 +60,6 @@ Severity: [  *] to [***]
 [  *]  The libm-ieee `scalb' function gives wrong results for
        non-integral second parameters.
 
-[  *]  _IO_getline can loop forever, at least with C++
-       [PR libc/332]
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 Ulrich Drepper
 drepper@cygnus.com
index 94acd29..5747a62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
 1998-02-27  Ulrich Drepper  <drepper@cygnus.com>
 
+       * Makefile (distribute): Add README.libm.
+
+1998-02-27  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
+
+       * time/clocktest.c (main): Correct typo: "--" -> "==".
+
+1998-02-25 20:53  H.J. Lu  <hjl@gnu.org>
+
+       * sysdeps/alpha/fpu/bits/mathinline.h (atan): Removed the bogus
+       inline function.
+       (copysignf, __copysignf, copysign, fabsf, __fabsf, fabs): New
+       inline functions.
+
+       * math/libm.map (__atan2): Added.
+
+1998-02-27  Ulrich Drepper  <drepper@cygnus.com>
+
        * misc/efgcvt_r.c (APPEND): Handle printing of 0.0 correctly.
        Reported by Göran Uddeborg <goeran@uddeborg.pp.se>.
 
index 5a3456e..1c923f3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -313,7 +313,7 @@ parent_echo-distinfo:
 \f
 # Make the distribution tarfile.
 
-distribute  := README INSTALL FAQ NOTES NEWS PROJECTS BUGS             \
+distribute  := README README.libm INSTALL FAQ NOTES NEWS PROJECTS BUGS \
               COPYING.LIB COPYING ChangeLog ChangeLog.[0-9]            \
               Makefile Makeconfig Makerules Rules Make-dist MakeTAGS   \
               extra-lib.mk o-iterator.mk                               \
index 55852a3..65cd938 100644 (file)
@@ -17,7 +17,7 @@ main (int argc, char ** argv)
 {
   clock_t start, stop;
 
-  if (signal(SIGALRM, alarm_handler) -- SIG_ERR)
+  if (signal(SIGALRM, alarm_handler) == SIG_ERR)
     {
       perror ("signal");
       exit (1);