Description:
	The second argument of tgetstr() is a char **, not a char *,
	as documented in /usr/share/man/man3/termcap.3.
This commit is contained in:
cgd 1993-11-14 08:59:39 +00:00
parent a7c7f39bad
commit 8c87352d27
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)termcap.3 6.6 (Berkeley) 4/19/91
.\" $Id: termcap.3,v 1.2 1993/08/01 07:40:40 mycroft Exp $
.\" $Id: termcap.3,v 1.3 1993/11/14 08:59:39 cgd Exp $
.\"
.Dd April 19, 1991
.Dt TERMCAP 3
@ -52,7 +52,7 @@
.Fn tgetnum "char *id"
.Fn tgetflag "char *id"
.Ft char *
.Fn tgetstr "char *id" "char *area"
.Fn tgetstr "char *id" "char **area"
.Ft char *
.Fn tgoto "char *cm" destcol destline
.Fn tputs "register char *cp" "int affcnt" "int (*outc)()"