mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
fe-text: include the real tputs(3) from term.h
This commit includes the real `tpus(3)` function from the appropriate `term.h` header file, if found. This commit is necessary to fix a compiler warning on Darwin.
This commit is contained in:
parent
f04375668c
commit
4ceafbeea4
@ -30,6 +30,13 @@
|
|||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <stdio.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
|
/* 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
|
a single character, or -1 if more input is needed. The character will be
|
||||||
saved in result */
|
saved in result */
|
||||||
@ -314,9 +321,6 @@ inline static int term_putchar(int c)
|
|||||||
return fputc(c, current_term->out);
|
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 int termctl_set_color_24bit(int bg, unsigned int lc)
|
||||||
{
|
{
|
||||||
static char buf[20];
|
static char buf[20];
|
||||||
|
Loading…
Reference in New Issue
Block a user