diff options
author | Bill Fumerola <billf@FreeBSD.org> | 2002-03-10 12:08:28 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 2002-03-10 12:08:28 +0000 |
commit | 29ec623730f5964793e62d87a7e6bf2ec654b37e (patch) | |
tree | 80e15d2067702fccececa7d5b57c044d302321b9 | |
parent | 01de1b13b8ef0db5a7f1af544bdbaad72dbf19f9 (diff) |
Notes
-rw-r--r-- | lib/libc/i386/string/strcat.S | 2 | ||||
-rw-r--r-- | lib/libc/i386/string/strcmp.S | 2 | ||||
-rw-r--r-- | lib/libc/i386/string/strcpy.S | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/i386/string/strcat.S b/lib/libc/i386/string/strcat.S index d05a308fa0e4..9d2c65989bc3 100644 --- a/lib/libc/i386/string/strcat.S +++ b/lib/libc/i386/string/strcat.S @@ -47,7 +47,7 @@ /* * I've unrolled the loop eight times: large enough to make a * significant difference, and small enough not to totally trash the - * cashe. + * cache. */ ENTRY(strcat) diff --git a/lib/libc/i386/string/strcmp.S b/lib/libc/i386/string/strcmp.S index 7631e4103839..045e95a865f4 100644 --- a/lib/libc/i386/string/strcmp.S +++ b/lib/libc/i386/string/strcmp.S @@ -51,7 +51,7 @@ /* * I've unrolled the loop eight times: large enough to make a * significant difference, and small enough not to totally trash the - * cashe. + * cache. */ ENTRY(strcmp) diff --git a/lib/libc/i386/string/strcpy.S b/lib/libc/i386/string/strcpy.S index c1dd0925d775..b3bccc17abef 100644 --- a/lib/libc/i386/string/strcpy.S +++ b/lib/libc/i386/string/strcpy.S @@ -46,7 +46,7 @@ /* * I've unrolled the loop eight times: large enough to make a * significant difference, and small enough not to totally trash the - * cashe. + * cache. */ ENTRY(strcpy) |