fixed some bugs, added LIST, Makefile & .distr

This commit is contained in:
eck
1989-12-18 16:02:55 +00:00
parent 8a409311da
commit dc2dd991c6
16 changed files with 93 additions and 29 deletions

View File

@@ -13,7 +13,7 @@ strchr(register const char *s, int c)
do {
if (*s == c1)
return s;
return (char *)s;
} while (*s++ != '\0');
return (char *)NULL;