changeset 29929:bb7557f86f5b

[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
author Dave Love <fx@gnu.org>
date Sun, 25 Jun 2000 17:22:33 +0000
parents 76975b5adf26
children e8ca0c73b9eb
files src/term.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/term.c	Sun Jun 25 16:29:47 2000 +0000
+++ b/src/term.c	Sun Jun 25 17:22:33 2000 +0000
@@ -40,6 +40,11 @@
 
 #ifdef HAVE_TERMCAP_H
 #include <termcap.h>
+#else
+extern void tputs P_ ((const char *, int, int (*)(int)));
+extern int tgetent P_ ((char *, const char *));
+extern int tgetflag P_ ((char *id));
+extern int tgetnum P_ ((char *id));
 #endif
 
 #include "cm.h"