diff options
| author | Rebecca Cran <brucec@FreeBSD.org> | 2011-02-24 10:23:22 +0000 |
|---|---|---|
| committer | Rebecca Cran <brucec@FreeBSD.org> | 2011-02-24 10:23:22 +0000 |
| commit | 252b710c510f1981e5acfd15f436d31080c011e1 (patch) | |
| tree | d6f1e0a8853a5326281fac6c21f3c6b54b60e748 /lib | |
| parent | 64b527b3c849b1dd7c382272037315029d729a6b (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/arm/gen/modf.c | 2 | ||||
| -rw-r--r-- | lib/libc/ia64/gen/modf.c | 2 | ||||
| -rw-r--r-- | lib/libc/mips/gen/modf.c | 2 | ||||
| -rw-r--r-- | lib/libc/powerpc/gen/modf.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arm/gen/modf.c b/lib/libc/arm/gen/modf.c index 347090cf1fe7..cb5aeac2ea46 100644 --- a/lib/libc/arm/gen/modf.c +++ b/lib/libc/arm/gen/modf.c @@ -86,7 +86,7 @@ modf(val, iptr) * If you look at the math involved for a few seconds, it's * plain to see that the integral part is the input, with the * low (DBL_FRACBITS - (exponent - DBL_EXP_BIAS)) bits zeroed, - * the the fractional part is the part with the rest of the + * the fractional part is the part with the rest of the * bits zeroed. Just zeroing the high bits to get the * fractional part would yield a fraction in need of * normalization. Therefore, we take the easy way out, and diff --git a/lib/libc/ia64/gen/modf.c b/lib/libc/ia64/gen/modf.c index def3aadbad26..13e61827b178 100644 --- a/lib/libc/ia64/gen/modf.c +++ b/lib/libc/ia64/gen/modf.c @@ -85,7 +85,7 @@ modf(val, iptr) * If you look at the math involved for a few seconds, it's * plain to see that the integral part is the input, with the * low (DBL_FRACBITS - (exponent - DBL_EXP_BIAS)) bits zeroed, - * the the fractional part is the part with the rest of the + * the fractional part is the part with the rest of the * bits zeroed. Just zeroing the high bits to get the * fractional part would yield a fraction in need of * normalization. Therefore, we take the easy way out, and diff --git a/lib/libc/mips/gen/modf.c b/lib/libc/mips/gen/modf.c index 347090cf1fe7..cb5aeac2ea46 100644 --- a/lib/libc/mips/gen/modf.c +++ b/lib/libc/mips/gen/modf.c @@ -86,7 +86,7 @@ modf(val, iptr) * If you look at the math involved for a few seconds, it's * plain to see that the integral part is the input, with the * low (DBL_FRACBITS - (exponent - DBL_EXP_BIAS)) bits zeroed, - * the the fractional part is the part with the rest of the + * the fractional part is the part with the rest of the * bits zeroed. Just zeroing the high bits to get the * fractional part would yield a fraction in need of * normalization. Therefore, we take the easy way out, and diff --git a/lib/libc/powerpc/gen/modf.c b/lib/libc/powerpc/gen/modf.c index 37786dc1e19b..612c5067b38e 100644 --- a/lib/libc/powerpc/gen/modf.c +++ b/lib/libc/powerpc/gen/modf.c @@ -86,7 +86,7 @@ modf(val, iptr) * If you look at the math involved for a few seconds, it's * plain to see that the integral part is the input, with the * low (DBL_FRACBITS - (exponent - DBL_EXP_BIAS)) bits zeroed, - * the the fractional part is the part with the rest of the + * the fractional part is the part with the rest of the * bits zeroed. Just zeroing the high bits to get the * fractional part would yield a fraction in need of * normalization. Therefore, we take the easy way out, and |
