Change prototype for addbuf to make it compatible with tputs now that

there is a prototype to check it against.
This commit is contained in:
John Birrell 1998-05-09 09:22:33 +00:00
parent ae87c53394
commit fef9452ba3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35867

View File

@ -74,8 +74,8 @@ register char *s1, *s2;
while ( (*s1++ = *s2++) != '\0');
}
addbuf (c)
register char c;
int addbuf (c)
register int c;
{
buffnum++;
@ -85,6 +85,7 @@ register char c;
buffnum = 0;
}
outbuff[buffnum] = c;
return (0);
}
buflush () {