diff src/sysdep.cc @ 1430:045e70a15a8f

[project @ 1995-09-19 07:05:37 by jwe]
author jwe
date Tue, 19 Sep 1995 07:09:50 +0000
parents f18474c64e72
children 592291d9dfbb
line wrap: on
line diff
--- a/src/sysdep.cc	Tue Sep 19 07:02:21 1995 +0000
+++ b/src/sysdep.cc	Tue Sep 19 07:09:50 1995 +0000
@@ -45,6 +45,16 @@
 #include <unistd.h>
 #endif
 
+#if defined (HAVE_TERMIOS_H)
+#include <termios.h>
+#elif defined (HAVE_TERMIO_H)
+#include <termio.h>
+#elif defined (HAVE_SGTTY_H)
+#include <sgtty.h>
+#else
+LOSE! LOSE!
+#endif
+
 #include "defun.h"
 #include "error.h"
 #include "f77-uscore.h"
@@ -63,16 +73,6 @@
 extern char *term_clrpag;
 extern void _rl_output_character_function ();
 
-#if defined (HAVE_TERMIOS_H)
-#include <termios.h>
-#elif defined (HAVE_TERMIO_H)
-#include <termio.h>
-#elif defined (HAVE_SGTTY_H)
-#include <sgtty.h>
-#else
-LOSE! LOSE!
-#endif
-
 extern double F77_FCN (d1mach, D1MACH) (const int&);
 }