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

@@ -9,7 +9,7 @@
size_t
strcspn(const char *string, const char *notin)
{
register char *s1, *s2;
register const char *s1, *s2;
for (s1 = string; *s1; s1++) {
for(s2 = notin; *s2 != *s1 && *s2; s2++)