diff options
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/strlen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c index b6e94b9..860a988 100644 --- a/lib/libc/string/strlen.c +++ b/lib/libc/string/strlen.c @@ -50,8 +50,8 @@ __FBSDID("$FreeBSD$"); * * ((x - 0x01....01) & 0x80....80) * - * This is more than 5.2 times as compared to the raw implementation - * on Intel T7300 under EM64T mode for strings longer than word length. + * This is more than 5.2 times as fast as the raw implementation on + * Intel T7300 under long mode for strings longer than word length. */ /* Magic numbers for the algorithm */ @@ -105,6 +105,6 @@ strlen(const char *str) } /* NOTREACHED */ - return 0; + return (0); } |