aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-05 10:21:18 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-05 10:21:18 +0300
commit68c1ec34aaf54aa04429c14e45d7664c4de335ee (patch)
tree826cc911f3ead277ce89b183bf6eb87039f49ba1
parente50f4987c0fbf51eead9112c565f9858547d07ec (diff)
downloadvideoteco-fork-68c1ec34aaf54aa04429c14e45d7664c4de335ee.tar.gz
tecterm.c: avoid duplicate function declarations
-rw-r--r--tecterm.c11
1 files changed, 2 insertions, 9 deletions
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);