diff options
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/arch/amd64/bzero.S | 2 | ||||
-rw-r--r-- | sys/lib/libkern/arch/amd64/memset.S | 2 | ||||
-rw-r--r-- | sys/lib/libkern/arch/i386/bzero.S | 4 | ||||
-rw-r--r-- | sys/lib/libkern/arch/i386/memset.S | 4 |
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 |