aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cm.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cm.h b/src/cm.h
index 652b61eb216..5e0caa1fa5e 100644
--- a/src/cm.h
+++ b/src/cm.h
@@ -100,9 +100,11 @@ struct cm
100 100
101extern struct cm Wcm; /* Terminal capabilities */ 101extern struct cm Wcm; /* Terminal capabilities */
102extern char PC; /* Pad character */ 102extern char PC; /* Pad character */
103#ifdef HAVE_TERMIOS_H 103
104#if defined (HAVE_TERMIOS_H) || defined (LINUX)
104#include <termios.h> 105#include <termios.h>
105/* HJL's version of libc is said to need this on the Alpha. */ 106/* HJL's version of libc is said to need this on the Alpha.
107 On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
106extern speed_t ospeed; 108extern speed_t ospeed;
107#else 109#else
108extern short ospeed; /* Output speed (from sg_ospeed) */ 110extern short ospeed; /* Output speed (from sg_ospeed) */