summaryrefslogtreecommitdiffstats
path: root/mbbsd/term.c
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-19 21:01:13 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-19 21:01:13 +0800
commit0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9 (patch)
tree1ab7c90ef8dfcf594a0240c77f34c97431218b33 /mbbsd/term.c
parentaf86ff908656d1b16a60704d80810ec5d2101726 (diff)
downloadpttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar.gz
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar.bz2
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar.lz
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar.xz
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.tar.zst
pttbbs-0ad03fc42972e6b3e9a80b7f45149b286bf3b1b9.zip
remove dead code
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2640 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/term.c')
-rw-r--r--mbbsd/term.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/mbbsd/term.c b/mbbsd/term.c
index 3162844e..94067e99 100644
--- a/mbbsd/term.c
+++ b/mbbsd/term.c
@@ -1,14 +1,6 @@
/* $Id$ */
#include "bbs.h"
-int tgetent(const char *bp, char *name);
-char *tgetstr(const char *id, char **area);
-int tgetflag(const char *id);
-int tgetnum(const char *id);
-int tputs(const char *str, int affcnt, int (*putc) (int));
-char *tparm(const char *str,...);
-char *tgoto(const char *cap, int col, int row);
-
/* ----------------------------------------------------- */
/* basic tty control */
/* ----------------------------------------------------- */
@@ -37,21 +29,6 @@ init_tty(void)
#define TERMCOMSIZE (40)
-#if 0
-static char *outp;
-static int *outlp;
-
-static int
-outcf(int ch)
-{
- if (*outlp < TERMCOMSIZE) {
- (*outlp)++;
- *outp++ = ch;
- }
- return 0;
-}
-#endif
-
static void
term_resize(int sig)
{