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
strlen(register const char *s)
{
char *org = s;
const char *org = s;
while (*s++)
/* EMPTY */ ;