nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 626bcd7cc2f2a7d065cca79262762f050bb901fb
parent ee11c6a62fb7f015dd8e20016162df43c3897323
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  3 Nov 2005 02:45:54 +0000

remove unneeded sys/wait.h #include from files.c


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

Diffstat:
MChangeLog | 3++-
Msrc/files.c | 1-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -19,7 +19,8 @@ CVS code - strlenpt(), check_linenumbers(), dump_buffer(), and dump_buffer_reverse() from winio.c to utils.c, as they're really utility functions. (DLR) - - Add missing stdio.h #include to text.c and winio.c. (DLR) + - Add missing stdio.h #include to text.c and winio.c, and remove + unneeded sys/wait.h #include from files.c. (DLR) - Move functions specific to the statusbar prompt to their own source file, adjust related variables accordingly, and rename variable resetstatuspos reset_statusbar_x. New file prompt.c; diff --git a/src/files.c b/src/files.c @@ -27,7 +27,6 @@ #include <string.h> #include <stdio.h> #include <unistd.h> -#include <sys/wait.h> #include <utime.h> #include <fcntl.h> #include <errno.h>