diff --git a/ChangeLog b/ChangeLog index ce8af2045dfa8aee15f87d3fdb626acc7682db8d..3fa7ae0d0ab3ab43796648db390fc90fd6d647b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ CVS code - - General: - Miscellaneous comment fixes. (DLR) + - Remove unnecessary #ifdef around termios.h #include in nano.c. + (DLR) GNU nano 1.3.10 - 2005.12.23 - General: diff --git a/src/nano.c b/src/nano.c index b8cd69b7c7a018fc6380a0969b46e73dc1cdd972..b0033b17efaa19a7f97283955e47b7623c381da5 100644 --- a/src/nano.c +++ b/src/nano.c @@ -34,15 +34,12 @@ #include <errno.h> #include <ctype.h> #include <locale.h> +#include <termios.h> #ifdef HAVE_GETOPT_H #include <getopt.h> #endif -#ifdef HAVE_TERMIOS_H -#include <termios.h> -#endif - #ifndef NANO_TINY #include <setjmp.h> #endif