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:
authorCorinna Vinschen <corinna@vinschen.de>2020-03-11 15:23:55 +0300
committerCorinna Vinschen <corinna@vinschen.de>2020-03-11 15:45:58 +0300
commitd2ef2331f9ec4cc6510cab5cd540bb3c3c863ca8 (patch)
tree2ec6acd02a3e5f26b334c92d7d4b702cfda4738e /winsup/cygwin/math/cephes_emath.h
parent256bc8bde00071b42dad4caf23ddda037d34c5fd (diff)
Cygwin: fix formatting: drop spaces leading tabs
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/math/cephes_emath.h')
-rw-r--r--winsup/cygwin/math/cephes_emath.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/math/cephes_emath.h b/winsup/cygwin/math/cephes_emath.h
index b92d710f6..740356b71 100644
--- a/winsup/cygwin/math/cephes_emath.h
+++ b/winsup/cygwin/math/cephes_emath.h
@@ -30,7 +30,7 @@
* Author: S. L. Moshier.
*
* 6 Oct 02 Modified for MinGW by inlining utility routines,
- * removing global variables, and splitting out strtold
+ * removing global variables, and splitting out strtold
* from _IO_ldtoa and _IO_ldtostr.
*
* Danny Smith <dannysmith@users.sourceforge.net>
@@ -81,8 +81,8 @@
* __ediv( a, b, c ) c = b / a
* __efloor( a, b ) truncate to integer, toward -infinity
* __efrexp( a, exp, s ) extract exponent and significand
- * __eifrac( e, &l, frac ) e to long integer and e type fraction
- * __euifrac( e, &l, frac ) e to unsigned long integer and e type fraction
+ * __eifrac( e, &l, frac ) e to long integer and e type fraction
+ * __euifrac( e, &l, frac ) e to unsigned long integer and e type fraction
* __einfin( e ) set e to infinity, leaving its sign alone
* __eldexp( a, n, b ) multiply by 2**n
* __emov( a, b ) b = a
@@ -97,10 +97,10 @@
* __etoe24( e, &f ) convert e type to IEEE single precision
* __etoe53( e, &d ) convert e type to IEEE double precision
* __etoe64( e, &d ) convert e type to IEEE long double precision
- * __eisneg( e ) 1 if sign bit of e != 0, else 0
- * __eisinf( e ) 1 if e has maximum exponent (non-IEEE)
+ * __eisneg( e ) 1 if sign bit of e != 0, else 0
+ * __eisinf( e ) 1 if e has maximum exponent (non-IEEE)
* or is infinite (IEEE)
- * __eisnan( e ) 1 if e is a NaN
+ * __eisnan( e ) 1 if e is a NaN
* __esqrt( a, b ) b = square root of a
*
*