]> git.eshelyaron.com Git - emacs.git/commitdiff
[HAVE_TERMCAP_H]: Include <termcap.h>.
authorDave Love <fx@gnu.org>
Thu, 17 Aug 2000 14:04:16 +0000 (14:04 +0000)
committerDave Love <fx@gnu.org>
Thu, 17 Aug 2000 14:04:16 +0000 (14:04 +0000)
[!HAVE_TERMCAP_H]: Prototype tputs, tgoto.

src/cm.c

index 8ab302a601248edd3e7c909018a3dd9709abc3d5..144baa847b5c1d10cca6ce9b2e6aa4eeda0ad512 100644 (file)
--- a/src/cm.c
+++ b/src/cm.c
@@ -27,13 +27,14 @@ Boston, MA 02111-1307, USA.  */
 
 #ifdef HAVE_TERMCAP_H
 #include <termcap.h>
+#else
+extern void tputs P_ ((const char *, int, int (*)(int)));
+extern char *tgoto P_ ((const char *, int, int));
 #endif
 
 #define        BIG     9999            /* 9999 good on VAXen.  For 16 bit machines
                                   use about 2000.... */
 
-char *tgoto ();
-
 extern char *BC, *UP;
 
 int cost;              /* sums up costs */