Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-04-30 22:23:40 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-04-30 22:23:40 +0400
commitbfc27bae1acb55886146a7c67f85cf752b5d532c (patch)
treeb50cd33ffa95c856e6d7d1e6bc506acc643e8f7e /newlib/libm
parent1bf83a86f6487859997dd2161a408df6be9f032a (diff)
* Various formatting and whitespace changes.
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/common/fdlibm.h4
-rw-r--r--newlib/libm/machine/Makefile.am2
-rw-r--r--newlib/libm/machine/Makefile.in2
-rw-r--r--newlib/libm/math/e_pow.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libm/common/fdlibm.h b/newlib/libm/common/fdlibm.h
index 5ca1a917b..cb18bd99b 100644
--- a/newlib/libm/common/fdlibm.h
+++ b/newlib/libm/common/fdlibm.h
@@ -11,11 +11,11 @@
* ====================================================
*/
-/* CYGNUS LOCAL: Include files. */
+/* REDHAT LOCAL: Include files. */
#include <math.h>
#include <machine/ieeefp.h>
-/* CYGNUS LOCAL: Default to XOPEN_MODE. */
+/* REDHAT LOCAL: Default to XOPEN_MODE. */
#define _XOPEN_MODE
/* Most routines need to check whether a float is finite, infinite, or not a
diff --git a/newlib/libm/machine/Makefile.am b/newlib/libm/machine/Makefile.am
index 4b972f7eb..ef8b143dd 100644
--- a/newlib/libm/machine/Makefile.am
+++ b/newlib/libm/machine/Makefile.am
@@ -20,7 +20,7 @@ endif # USE_LIBTOOL
$(libm_machine_dir)/lib.a:
-doc:
+doc:
ACLOCAL_AMFLAGS = -I ../..
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
diff --git a/newlib/libm/machine/Makefile.in b/newlib/libm/machine/Makefile.in
index 95be23b6d..8efbb941b 100644
--- a/newlib/libm/machine/Makefile.in
+++ b/newlib/libm/machine/Makefile.in
@@ -430,7 +430,7 @@ maintainer-clean
$(libm_machine_dir)/lib.a:
-doc:
+doc:
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
diff --git a/newlib/libm/math/e_pow.c b/newlib/libm/math/e_pow.c
index 9312085d4..240a18613 100644
--- a/newlib/libm/math/e_pow.c
+++ b/newlib/libm/math/e_pow.c
@@ -179,7 +179,7 @@ ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/
}
/* (x<0)**(non-int) is NaN */
- /* CYGNUS LOCAL: This used to be
+ /* REDHAT LOCAL: This used to be
if((((hx>>31)+1)|yisint)==0) return (x-x)/(x-x);
but ANSI C says a right shift of a signed negative quantity is
implementation defined. */