Mercurial > emacs
diff src/term.c @ 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 | 3306af2e4f3d |
children | 593b589de709 |
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"