From: David Lawrence Ramsey Date: Wed, 28 Dec 2005 05:01:00 +0000 (+0000) Subject: remove unnecessary #ifdef around termios.h #include in nano.c X-Git-Tag: v1.3.11~76 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ce029f2b112d2ebf17f5d38d6676c44bbafa4b64;p=nano.git remove unnecessary #ifdef around termios.h #include in nano.c git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3250 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index ce8af204..3fa7ae0d 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 b8cd69b7..b0033b17 100644 --- a/src/nano.c +++ b/src/nano.c @@ -34,15 +34,12 @@ #include #include #include +#include #ifdef HAVE_GETOPT_H #include #endif -#ifdef HAVE_TERMIOS_H -#include -#endif - #ifndef NANO_TINY #include #endif