mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
Nuke local termcap.h and use system one
This commit is contained in:
parent
95729168e4
commit
e390f0a585
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9898
@ -49,7 +49,7 @@ static char sccsid[] = "@(#)term.c 8.1 (Berkeley) 6/4/93";
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include "termcap.h" /* XXX: should be <termcap.h> */
|
||||
#include <termcap.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "el.h"
|
||||
@ -1131,11 +1131,11 @@ term_bind_arrow(el)
|
||||
/* term__putc():
|
||||
* Add a character
|
||||
*/
|
||||
protected void
|
||||
protected int
|
||||
term__putc(c)
|
||||
int c;
|
||||
{
|
||||
(void) fputc(c, term_outfile);
|
||||
return fputc(c, term_outfile);
|
||||
} /* end term__putc */
|
||||
|
||||
|
||||
|
@ -100,7 +100,7 @@ protected int term_settc __P((EditLine *, int, char **));
|
||||
protected int term_telltc __P((EditLine *, int, char **));
|
||||
protected int term_echotc __P((EditLine *, int, char **));
|
||||
|
||||
protected void term__putc __P((int));
|
||||
protected int term__putc __P((int));
|
||||
protected void term__flush __P((void));
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user