aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-06-25 17:22:33 +0000
committerDave Love2000-06-25 17:22:33 +0000
commit46d1b2bcc1482fb9c8098c05a67940191757f5a8 (patch)
treef21c9f1901ce93fd2ed99f2189dd3fd0c67fbc4f /src
parent4a1ec21313b1e4742e39c993784124a24a867694 (diff)
downloademacs-46d1b2bcc1482fb9c8098c05a67940191757f5a8.tar.gz
emacs-46d1b2bcc1482fb9c8098c05a67940191757f5a8.zip
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Diffstat (limited to 'src')
-rw-r--r--src/term.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index 5d8e7bb658d..5c439b34c9e 100644
--- a/src/term.c
+++ b/src/term.c
@@ -40,6 +40,11 @@ Boston, MA 02111-1307, USA. */
40 40
41#ifdef HAVE_TERMCAP_H 41#ifdef HAVE_TERMCAP_H
42#include <termcap.h> 42#include <termcap.h>
43#else
44extern void tputs P_ ((const char *, int, int (*)(int)));
45extern int tgetent P_ ((char *, const char *));
46extern int tgetflag P_ ((char *id));
47extern int tgetnum P_ ((char *id));
43#endif 48#endif
44 49
45#include "cm.h" 50#include "cm.h"