summaryrefslogtreecommitdiffstats
path: root/compat/strtod.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-07-02 12:17:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-07-02 12:17:26 (GMT)
commitdfeb9e71446a7354fd0e7551244db75e36bc3c13 (patch)
tree1576e69effccf8fb0604c2f141938b003cc5d91e /compat/strtod.c
parenta6e73bdff10969ba7650f19309abf4a6ee9c041d (diff)
downloadtcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.zip
tcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.tar.gz
tcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.tar.bz2
Remove unnecessary end-of-line spacing in compat/*.c
Diffstat (limited to 'compat/strtod.c')
-rw-r--r--compat/strtod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/strtod.c b/compat/strtod.c
index cb9f76d..9643c09 100644
--- a/compat/strtod.c
+++ b/compat/strtod.c
@@ -1,4 +1,4 @@
-/*
+/*
* strtod.c --
*
* Source code for the "strtod" library procedure.
@@ -137,7 +137,7 @@ strtod(
* has more than 18 digits, ignore the extras, since they can't affect the
* value anyway.
*/
-
+
pExp = p;
p -= mantSize;
if (decPt < 0) {
@@ -217,7 +217,7 @@ strtod(
* by processing the exponent one bit at a time to combine many powers of
* 2 of 10. Then combine the exponent with the fraction.
*/
-
+
if (exp < 0) {
expSign = TRUE;
exp = -exp;