summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2021-04-13 08:06:38 +0000
committerCameron Katri <me@cameronkatri.com>2021-04-13 15:28:35 -0400
commita1069e498ca56abe42d4eac4a400365139b361cc (patch)
treec0d1075ad76aa53299686f0ac78f2671bb8d9d55
parent44b33acd55bd299fdfe954232e812a4ee077a075 (diff)
downloadbsdgames-darwin-a1069e498ca56abe42d4eac4a400365139b361cc.tar.gz
bsdgames-darwin-a1069e498ca56abe42d4eac4a400365139b361cc.tar.zst
bsdgames-darwin-a1069e498ca56abe42d4eac4a400365139b361cc.zip
avoid duplicating symbols in libterminfo.
-rw-r--r--warp/term.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/warp/term.h b/warp/term.h
index 3798a24c..179e0034 100644
--- a/warp/term.h
+++ b/warp/term.h
@@ -252,8 +252,10 @@ EXT bool bizarre INIT(false); /* do we need to restore terminal? */
*/
#ifdef HAVETERMLIB
+#if 0
EXT char *BC INIT(NULL); /* backspace character */
EXT char *UP INIT(NULL); /* move cursor up one line */
+#endif
EXT char *myUP;
EXT char *ND INIT(NULL); /* non-destructive cursor right */
EXT char *myND;
@@ -275,8 +277,10 @@ EXT char *UC INIT(NULL); /* underline a character, if that's how it's done */
EXT int UG INIT(0); /* blanks left by US and UE */
EXT bool AM INIT(false); /* does terminal have automatic margins? */
EXT bool XN INIT(false); /* does it eat 1st newline after automatic wrap? */
+#if 0
EXT char PC INIT(0); /* pad character for use by tputs() */
EXT short ospeed INIT(0); /* terminal output speed, for use by tputs() */
+#endif
EXT int LINES INIT(0), COLS INIT(0); /* size of screen */
EXT int just_a_sec INIT(960); /* 1 sec at current baud rate */
/* (number of nulls) */