summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2007-05-25 20:32:29 +0000
committerkrw <krw@openbsd.org>2007-05-25 20:32:29 +0000
commitf70d55c339cf9fe6758574ecff1d7c5e02e607a2 (patch)
tree5d0c5ca211bc2bb8662c74f24a0e53ac417eb8ca /sys/lib/libkern
parentRemove y2k hack. If no century is specified, use the current one. (diff)
downloadwireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.tar.xz
wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.zip
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r--sys/lib/libkern/arch/amd64/bzero.S2
-rw-r--r--sys/lib/libkern/arch/amd64/memset.S2
-rw-r--r--sys/lib/libkern/arch/i386/bzero.S4
-rw-r--r--sys/lib/libkern/arch/i386/memset.S4
4 files changed, 6 insertions, 6 deletions
diff --git a/sys/lib/libkern/arch/amd64/bzero.S b/sys/lib/libkern/arch/amd64/bzero.S
index 6e4fe834d1a..b246ac9adb5 100644
--- a/sys/lib/libkern/arch/amd64/bzero.S
+++ b/sys/lib/libkern/arch/amd64/bzero.S
@@ -18,7 +18,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpq $16,%rdx
diff --git a/sys/lib/libkern/arch/amd64/memset.S b/sys/lib/libkern/arch/amd64/memset.S
index 2d92dc66534..c28b8840104 100644
--- a/sys/lib/libkern/arch/amd64/memset.S
+++ b/sys/lib/libkern/arch/amd64/memset.S
@@ -19,7 +19,7 @@ ENTRY(memset)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpq $0x0f,%rcx
diff --git a/sys/lib/libkern/arch/i386/bzero.S b/sys/lib/libkern/arch/i386/bzero.S
index 5821f15cee4..2d1a1b1e59f 100644
--- a/sys/lib/libkern/arch/i386/bzero.S
+++ b/sys/lib/libkern/arch/i386/bzero.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: bzero.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */
+/* $OpenBSD: bzero.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
@@ -17,7 +17,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $16,%edx
diff --git a/sys/lib/libkern/arch/i386/memset.S b/sys/lib/libkern/arch/i386/memset.S
index 335de9b0bf8..46bfd06fbc2 100644
--- a/sys/lib/libkern/arch/i386/memset.S
+++ b/sys/lib/libkern/arch/i386/memset.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: memset.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */
+/* $OpenBSD: memset.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
@@ -19,7 +19,7 @@ ENTRY(memset)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $0x0f,%ecx