From: Karl Heuer Date: Mon, 15 Jul 1996 21:58:10 +0000 (+0000) Subject: Use . X-Git-Tag: emacs-19.34~170 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e493299546bcc220e94e3d53501607f0e7d7823f;p=emacs.git Use . [HAVE_TERMIOS_H]: Declare ospeed as speed_t. [USG]: Include . --- diff --git a/src/terminfo.c b/src/terminfo.c index 8ce87960f03..eef648b2157 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -22,8 +22,19 @@ Boston, MA 02111-1307, USA. */ so that we do not need to conditionalize the places in Emacs that set them. */ +#include + +#ifdef USG +# include +#endif + char *UP, *BC, PC; -short ospeed; +#ifdef HAVE_TERMIOS_H +# include + speed_t ospeed; +#else + short ospeed; +#endif static buffer[512];