diff options
| author | Dave Love | 2000-06-25 17:22:33 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-25 17:22:33 +0000 |
| commit | 46d1b2bcc1482fb9c8098c05a67940191757f5a8 (patch) | |
| tree | f21c9f1901ce93fd2ed99f2189dd3fd0c67fbc4f /src | |
| parent | 4a1ec21313b1e4742e39c993784124a24a867694 (diff) | |
| download | emacs-46d1b2bcc1482fb9c8098c05a67940191757f5a8.tar.gz emacs-46d1b2bcc1482fb9c8098c05a67940191757f5a8.zip | |
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Diffstat (limited to 'src')
| -rw-r--r-- | src/term.c | 5 |
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 | ||
| 44 | extern void tputs P_ ((const char *, int, int (*)(int))); | ||
| 45 | extern int tgetent P_ ((char *, const char *)); | ||
| 46 | extern int tgetflag P_ ((char *id)); | ||
| 47 | extern int tgetnum P_ ((char *id)); | ||
| 43 | #endif | 48 | #endif |
| 44 | 49 | ||
| 45 | #include "cm.h" | 50 | #include "cm.h" |