comparison src/cm.h @ 15691:f912ad203841

[HAVE_TERMIOS_H]: Declare ospeed as speed_t.
author Karl Heuer <kwzh@gnu.org>
date Mon, 15 Jul 1996 21:53:24 +0000
parents ee40177f6c68
children 58e638890a20
comparison
equal deleted inserted replaced
15690:d50b8a2e6fe5 15691:f912ad203841
98 int cc_vabs; 98 int cc_vabs;
99 }; 99 };
100 100
101 extern struct cm Wcm; /* Terminal capabilities */ 101 extern struct cm Wcm; /* Terminal capabilities */
102 extern char PC; /* Pad character */ 102 extern char PC; /* Pad character */
103 #ifdef HAVE_TERMIOS_H
104 # include <termios.h>
105 extern speed_t ospeed;
106 #else
103 extern short ospeed; /* Output speed (from sg_ospeed) */ 107 extern short ospeed; /* Output speed (from sg_ospeed) */
108 #endif
104 109
105 /* Shorthand */ 110 /* Shorthand */
106 #ifndef NoCMShortHand 111 #ifndef NoCMShortHand
107 #define curY Wcm.cm_curY 112 #define curY Wcm.cm_curY
108 #define curX Wcm.cm_curX 113 #define curX Wcm.cm_curX