diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-28 17:04:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-28 17:04:18 +0000 |
commit | ba5971b37a41900f8074a4e6430b88dd46826380 (patch) | |
tree | 03e80fd3c50858b3d1397bd8545aedaa40bd8979 /src/terminfo.c | |
parent | 4ee1cf9f78850921eaed7a6b1289769d6ef7dc48 (diff) | |
download | emacs-ba5971b37a41900f8074a4e6430b88dd46826380.tar.gz |
[HAVE_LIBNCURSES]: Declare ospeed as short, unless NCURSES_OSPEED_T.
Diffstat (limited to 'src/terminfo.c')
-rw-r--r-- | src/terminfo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/terminfo.c b/src/terminfo.c index 870461f5a04..4bb47997507 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -26,6 +26,9 @@ Boston, MA 02111-1307, USA. */ char *UP, *BC, PC; +#if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T) +short ospeed; +#else #if defined (HAVE_TERMIOS_H) && defined (LINUX) #include <termios.h> /* HJL's version of libc is said to need this on the Alpha. @@ -34,6 +37,7 @@ speed_t ospeed; #else short ospeed; #endif +#endif static buffer[512]; |