optimized a bit

This commit is contained in:
ceriel
1990-05-31 18:33:38 +00:00
parent e2b59f6517
commit 3de1e669b2
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 */ ;