]> git.eshelyaron.com Git - emacs.git/commitdiff
(ospeed): Declare as short unless HAVE_TERMIOS_H and LINUX.
authorRichard M. Stallman <rms@gnu.org>
Mon, 7 Jul 1997 06:42:35 +0000 (06:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 7 Jul 1997 06:42:35 +0000 (06:42 +0000)
src/cm.h

index 652b61eb216b45bfcc310fbc7d91ccf21b6af460..5e0caa1fa5eab97379e377879c1a0be74d31c616 100644 (file)
--- a/src/cm.h
+++ b/src/cm.h
@@ -100,9 +100,11 @@ struct cm
 
 extern struct cm Wcm;          /* Terminal capabilities */
 extern char PC;                        /* Pad character */
-#ifdef HAVE_TERMIOS_H
+
+#if defined (HAVE_TERMIOS_H) || defined (LINUX)
 #include <termios.h>
-/* HJL's version of libc is said to need this on the Alpha.  */
+/* HJL's version of libc is said to need this on the Alpha.
+   On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short.  */
 extern speed_t ospeed;
 #else
 extern short ospeed;           /* Output speed (from sg_ospeed) */