From 68c1ec34aaf54aa04429c14e45d7664c4de335ee Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Mon, 5 May 2025 10:21:18 +0300 Subject: tecterm.c: avoid duplicate function declarations --- tecterm.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'tecterm.c') diff --git a/tecterm.c b/tecterm.c index 25e9849..a4417a4 100644 --- a/tecterm.c +++ b/tecterm.c @@ -60,12 +60,7 @@ char *tgetstr(char *, char **); int scr_outbuf_left; char insert_delete_line_capability; - void term_insert_line(); - void term_delete_line(); - void term_puts( char *termcap_string, int lines_affected ); - - int term_putc(int); - void term_flush(); + void term_puts( char *termcap_string, int lines_affected ); #ifdef TERMCAP char *tgetstr(); @@ -1004,9 +999,7 @@ setwhich: * line. */ int -term_scroll_region(top,bottom) -int top; -int bottom; +term_scroll_region( int top, int bottom ) { if(change_scroll_region == NULL) return(FAIL); -- cgit v1.2.3