diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-10 19:53:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-10 19:53:02 +0000 |
commit | cbf8a87391b91554c31ba94222cb461b9dc79572 (patch) | |
tree | 07bf520d79c91305e0388829f11ea1daebefdabb /src/cm.h | |
parent | 6022d4938e7c848892c962389859960519ae0cf8 (diff) | |
download | emacs-cbf8a87391b91554c31ba94222cb461b9dc79572.tar.gz |
[HAVE_TERMIOS_H]: Include termios.h.
(ospeed) [HAVE_TERMIOS_H]: Use ospeed_t.
Diffstat (limited to 'src/cm.h')
-rw-r--r-- | src/cm.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -100,7 +100,13 @@ struct cm extern struct cm Wcm; /* Terminal capabilities */ extern char PC; /* Pad character */ +#ifdef HAVE_TERMIOS_H +#include <termios.h> +/* HJL's version of libc is said to need this on the Alpha. */ +speed_t ospeed; +#else extern short ospeed; /* Output speed (from sg_ospeed) */ +#endif /* Shorthand */ #ifndef NoCMShortHand |