Bash-4.4 distribution sources and documentation

This commit is contained in:
Chet Ramey 2016-09-15 16:59:08 -04:00
commit a0c0a00fc4
588 changed files with 130746 additions and 80164 deletions

View file

@ -309,7 +309,7 @@ static int speeds[] =
};
__private_extern__
void
int
tputs (str, nlines, outfun)
register char *str;
int nlines;
@ -335,7 +335,7 @@ tputs (str, nlines, outfun)
#endif
if (!str)
return;
return -1;
while (*str >= '0' && *str <= '9')
{
@ -372,6 +372,8 @@ tputs (str, nlines, outfun)
while (padcount-- > 0)
(*outfun) (PC);
return 0;
}
/* Finding the termcap entry in the termcap data base. */