summaryrefslogtreecommitdiffstats
path: root/generic/tclStrToD.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclStrToD.c')
-rw-r--r--generic/tclStrToD.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c
index 59decd9..f6e0e3c 100644
--- a/generic/tclStrToD.c
+++ b/generic/tclStrToD.c
@@ -124,7 +124,7 @@ typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__HI__)));
* Definitions of the parts of an IEEE754-format floating point number.
*/
-#define SIGN_BIT 0x80000000
+#define SIGN_BIT 0x80000000
/* Mask for the sign bit in the first word of
* a double. */
#define EXP_MASK 0x7FF00000
@@ -308,7 +308,7 @@ static double MakeNaN(int signum, Tcl_WideUInt tag);
static double RefineApproximation(double approx,
mp_int *exactSignificand, int exponent);
static mp_err MulPow5(mp_int *, unsigned, mp_int *) MP_WUR;
-static int NormalizeRightward(Tcl_WideUInt *);
+static int NormalizeRightward(Tcl_WideUInt *);
static int RequiredPrecision(Tcl_WideUInt);
static void DoubleToExpAndSig(double, Tcl_WideUInt *, int *,
int *);
@@ -2209,7 +2209,7 @@ RefineApproximation(
static inline mp_err
MulPow5(
- mp_int *base, /* Number to multiply. */
+ mp_int *base, /* Number to multiply. */
unsigned n, /* Power of 5 to multiply by. */
mp_int *result) /* Place to store the result. */
{
@@ -2706,7 +2706,7 @@ SetPrecisionLimits(
static inline char *
BumpUp(
- char *s, /* Cursor pointing one past the end of the
+ char *s, /* Cursor pointing one past the end of the
* string. */
char *retval, /* Start of the string of digits. */
int *kPtr) /* Position of the decimal point. */
@@ -4154,7 +4154,7 @@ StrictBignumConversion(
}
err = mp_mul_2d(&b, b2, &b);
if (err == MP_OKAY) {
- err = mp_init_set(&S, 1);
+ err = mp_init_set(&S, 1);
}
if (err == MP_OKAY) {
err = MulPow5(&S, s5, &S);