diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-05 10:21:18 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-05 10:21:18 +0300 |
commit | 68c1ec34aaf54aa04429c14e45d7664c4de335ee (patch) | |
tree | 826cc911f3ead277ce89b183bf6eb87039f49ba1 | |
parent | e50f4987c0fbf51eead9112c565f9858547d07ec (diff) | |
download | videoteco-fork-68c1ec34aaf54aa04429c14e45d7664c4de335ee.tar.gz |
tecterm.c: avoid duplicate function declarations
-rw-r--r-- | tecterm.c | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -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); |