comparison src/sysdep.c @ 16117:16c866efd8b5

[HAVE_TERMIOS_H]: Include termios.h. (ospeed) [HAVE_TERMIOS_H]: Use ospeed_t.
author Richard M. Stallman <rms@gnu.org>
date Wed, 04 Sep 1996 15:10:42 +0000
parents ccf489f8596e
children b448d7632094
comparison
equal deleted inserted replaced
16116:80a67b8f39e9 16117:16c866efd8b5
223 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200, 223 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
224 1800, 2400, 4800, 9600, 19200, 38400 224 1800, 2400, 4800, 9600, 19200, 38400
225 }; 225 };
226 #endif 226 #endif
227 227
228 #ifdef HAVE_TERMIOS_H
229 #include <termios.h>
230 extern speed_t ospeed;
231 #else
228 extern short ospeed; 232 extern short ospeed;
233 #endif
229 234
230 /* The file descriptor for Emacs's input terminal. 235 /* The file descriptor for Emacs's input terminal.
231 Under Unix, this is normally zero except when using X; 236 Under Unix, this is normally zero except when using X;
232 under VMS, we place the input channel number here. */ 237 under VMS, we place the input channel number here. */
233 int input_fd; 238 int input_fd;