]> git.wh0rd.org Git - nano.git/commitdiff
remove unnecessary #ifdef around termios.h #include in nano.c
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 28 Dec 2005 05:01:00 +0000 (05:01 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 28 Dec 2005 05:01:00 +0000 (05:01 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3250 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c

index ce8af2045dfa8aee15f87d3fdb626acc7682db8d..3fa7ae0d0ab3ab43796648db390fc90fd6d647b8 100644 (file)
--- 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:
index b8cd69b7c7a018fc6380a0969b46e73dc1cdd972..b0033b17efaa19a7f97283955e47b7623c381da5 100644 (file)
 #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