1
0
Fork 0

Merge pull request #1495 from ailin-nemui/terminclude

fe-text: include the real tputs(3) from term.h
(cherry picked from commit db32744ee4)
This commit is contained in:
ailin-nemui 2023-09-13 20:55:21 +00:00 committed by Ailin Nemui
parent 7145e1ef20
commit 91593cfec3
1 changed files with 7 additions and 3 deletions

View File

@ -30,6 +30,13 @@
#include <termios.h>
#include <stdio.h>
#ifdef HAVE_TERM_H
#include <term.h>
#else
/* TODO: This needs arguments, starting with C2X. */
int tputs();
#endif
/* returns number of characters in the beginning of the buffer being a
a single character, or -1 if more input is needed. The character will be
saved in result */
@ -314,9 +321,6 @@ inline static int term_putchar(int c)
return fputc(c, current_term->out);
}
/* copied from terminfo-core.c */
int tputs();
static int termctl_set_color_24bit(int bg, unsigned int lc)
{
static char buf[20];