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 *
strncat(register char *s1, register const char *s2, size_t n)
strncat(char *ret, register const char *s2, size_t n)
{
char *ret = s1;
register char *s1 = ret;
if (n <= 0)
return s1;