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>
char *
strcat(register char *s1, register const char *s2)
strcat(char *ret, register const char *s2)
{
char *ret = s1;
register char *s1 = ret;
while (*s1++ != '\0')
/* EMPTY */ ;