summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/arm/gen/modf.c2
-rw-r--r--lib/libc/ia64/gen/modf.c2
-rw-r--r--lib/libc/mips/gen/modf.c2
-rw-r--r--lib/libc/powerpc/gen/modf.c2
-rw-r--r--lib/libc/powerpc64/gen/modf.c2
-rw-r--r--lib/libpkg/version.c2
-rw-r--r--lib/libstand/environment.c2
-rw-r--r--lib/msun/src/s_cbrt.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/arm/gen/modf.c b/lib/libc/arm/gen/modf.c
index 347090c..cb5aeac 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 def3aad..13e6182 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 347090c..cb5aeac 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 37786dc..612c506 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
diff --git a/lib/libc/powerpc64/gen/modf.c b/lib/libc/powerpc64/gen/modf.c
index 37786dc..612c506 100644
--- a/lib/libc/powerpc64/gen/modf.c
+++ b/lib/libc/powerpc64/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/libpkg/version.c b/lib/libpkg/version.c
index 1b7bb5b..123fd5d2 100644
--- a/lib/libpkg/version.c
+++ b/lib/libpkg/version.c
@@ -76,7 +76,7 @@ split_version(const char *pkgname, const char **endname, unsigned long *epoch, u
if (pkgname == NULL)
errx(2, "%s: Passed NULL pkgname.", __func__);
- /* Look for the last '-' the the pkgname */
+ /* Look for the last '-' the pkgname */
ch = strrchr(pkgname, '-');
/* Cheat if we are just passed a version, not a valid package name */
versionstr = ch ? ch + 1 : pkgname;
diff --git a/lib/libstand/environment.c b/lib/libstand/environment.c
index c30b730..3505ccd 100644
--- a/lib/libstand/environment.c
+++ b/lib/libstand/environment.c
@@ -59,7 +59,7 @@ env_getenv(const char *name)
* Some notes:
*
* If the EV_VOLATILE flag is set, a copy of the variable is made.
- * If EV_DYNAMIC is set, the the variable has been allocated with
+ * If EV_DYNAMIC is set, the variable has been allocated with
* malloc and ownership transferred to the environment.
* If (value) is NULL, the variable is set but has no value.
*/
diff --git a/lib/msun/src/s_cbrt.c b/lib/msun/src/s_cbrt.c
index 2c70980..27ecd97 100644
--- a/lib/msun/src/s_cbrt.c
+++ b/lib/msun/src/s_cbrt.c
@@ -94,7 +94,7 @@ cbrt(double x)
* 2 23-bit ulps larger). With rounding towards zero, the error bound
* would be ~5/6 instead of ~4/6. With a maximum error of 2 23-bit ulps
* in the rounded t, the infinite-precision error in the Newton
- * approximation barely affects third digit in the the final error
+ * approximation barely affects third digit in the final error
* 0.667; the error in the rounded t can be up to about 3 23-bit ulps
* before the final error is larger than 0.667 ulps.
*/
OpenPOWER on IntegriCloud