]> git.wh0rd.org Git - nano.git/commitdiff
don't include sys/ioctl.h in nano.c when NANO_TINY is defined, as
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 12 Jul 2006 18:57:04 +0000 (18:57 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 12 Jul 2006 18:57:04 +0000 (18:57 +0000)
ioctl() is never used then

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3780 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c

index 3d4dbc2d87150571d9dd9ad49b5cc35344da99de..dfe37669041e6222405f4e5af2bb474ad84325ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,8 @@ CVS code -
          manual pages were written for, consistent in the
          documentation.  Changes to AUTHORS, nano.1, nanorc.5, and
          rnano.1. (DLR, based on suggestions by Jordi)
+       - Don't include sys/ioctl.h in nano.c when NANO_TINY is defined,
+         as ioctl() is never used then. (DLR)
 - browser.c:
   do_browser()
        - Refactor the mouse support, modeling it after do_mouse() for
index 5d6216758a79857a43a03411d46eaca5610c50b2..785315e03b24bdc4b32b33765afd30cedb49df12 100644 (file)
@@ -29,7 +29,6 @@
 #include <unistd.h>
 #include <string.h>
 #include <fcntl.h>
-#include <sys/ioctl.h>
 #include <errno.h>
 #include <ctype.h>
 #include <locale.h>
 #include <getopt.h>
 #endif
 
+#ifndef NANO_TINY
+#include <sys/ioctl.h>
+#endif
+
 #ifdef ENABLE_NANORC
 static bool no_rcfiles = FALSE;
        /* Should we ignore all rcfiles? */