diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 20:32:30 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 20:32:30 +0000 |
commit | bd36369ef6e52321676d1e59af0f12ab6ce56329 (patch) | |
tree | 28c5b4d2a935ae1c4bb7f89c2ea9512c397dbe62 /lib/libc/arch | |
parent | 631e93e0adb0977be3cb2e0f1daa708c556ca25c (diff) |
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
Diffstat (limited to 'lib/libc/arch')
-rw-r--r-- | lib/libc/arch/i386/string/bzero.S | 4 | ||||
-rw-r--r-- | lib/libc/arch/i386/string/memset.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/i386/string/bzero.S b/lib/libc/arch/i386/string/bzero.S index 2ec9c7dd6c6..eea840afdca 100644 --- a/lib/libc/arch/i386/string/bzero.S +++ b/lib/libc/arch/i386/string/bzero.S @@ -1,4 +1,4 @@ -/* $OpenBSD: bzero.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */ +/* $OpenBSD: bzero.S,v 1.4 2007/05/25 20:32:29 krw Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. @@ -16,7 +16,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/lib/libc/arch/i386/string/memset.S b/lib/libc/arch/i386/string/memset.S index 1059ccc9951..912b74a19e1 100644 --- a/lib/libc/arch/i386/string/memset.S +++ b/lib/libc/arch/i386/string/memset.S @@ -1,4 +1,4 @@ -/* $OpenBSD: memset.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */ +/* $OpenBSD: memset.S,v 1.4 2007/05/25 20:32:29 krw Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. @@ -18,7 +18,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 |