optimized a bit

This commit is contained in:
ceriel
1990-05-31 18:33:38 +00:00
parent b2359023d6
commit 472dd9f563
7 changed files with 13 additions and 13 deletions

View File

@@ -7,9 +7,9 @@
#include <string.h>
size_t
strlen(register const char *s)
strlen(const char *org)
{
const char *org = s;
register const char *s = org;
while (*s++)
/* EMPTY */ ;