diff options
author | 2007-05-25 20:32:29 +0000 | |
---|---|---|
committer | 2007-05-25 20:32:29 +0000 | |
commit | f70d55c339cf9fe6758574ecff1d7c5e02e607a2 (patch) | |
tree | 5d0c5ca211bc2bb8662c74f24a0e53ac417eb8ca /lib/libc | |
parent | Remove y2k hack. If no century is specified, use the current one. (diff) | |
download | wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.tar.xz wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.zip |
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
Diffstat (limited to 'lib/libc')
-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 |