]> git.eshelyaron.com Git - emacs.git/commitdiff
Include config.h.
authorRichard M. Stallman <rms@gnu.org>
Wed, 4 Sep 1996 15:12:18 +0000 (15:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 4 Sep 1996 15:12:18 +0000 (15:12 +0000)
[HAVE_TERMIOS_H]: Include termios.h.
(ospeed) [HAVE_TERMIOS_H]: Use ospeed_t.

src/terminfo.c

index 8ce87960f03e109f3b5cf3e701f4d8b3fc7b1d01..ab6ab9e4ccb46a25b4218dcbf934245e608414d3 100644 (file)
@@ -18,12 +18,20 @@ along with GNU Emacs; see the file COPYING.  If not, write to
 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
+#include <config.h>
+
 /* Define these variables that serve as global parameters to termcap,
    so that we do not need to conditionalize the places in Emacs
    that set them.  */
 
 char *UP, *BC, PC;
+
+#ifdef HAVE_TERMIOS_H
+#include <termios.h>
+speed_t ospeed;
+#else
 short ospeed;
+#endif
 
 static buffer[512];