Make tbl compile silently.

This commit is contained in:
wkj 2004-05-17 02:23:43 +00:00
parent 1f72bc47fe
commit 8a3cbc1579
19 changed files with 321 additions and 328 deletions

View file

@ -64,7 +64,7 @@ max(int a, int b)
void
tcopy (char *s, char *t)
{
while ((*s++ = *t++))
while (*s++ = *t++)
;
}