diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-09 22:10:38 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-09 22:10:38 +0000 |
commit | 580d1e6d6d97c3e6f0fca764091e70319350c9a2 (patch) | |
tree | c13b378f7660a7b30c4f075579fff60f312b5810 | |
parent | 531b803d836882711c68158bd5bac02c3c1e95a9 (diff) | |
download | coreutils-580d1e6d6d97c3e6f0fca764091e70319350c9a2.tar.xz |
Don't include stdio.h; no longer needed.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/comm.c | 1 | ||||
-rw-r--r-- | src/csplit.c | 1 | ||||
-rw-r--r-- | src/dd.c | 1 | ||||
-rw-r--r-- | src/join.c | 1 | ||||
-rw-r--r-- | src/md5sum.c | 1 | ||||
-rw-r--r-- | src/pr.c | 1 | ||||
-rw-r--r-- | src/sort.c | 1 | ||||
-rw-r--r-- | src/tee.c | 1 |
9 files changed, 7 insertions, 9 deletions
@@ -1,7 +1,13 @@ -2005-07-08 Paul Eggert <eggert@cs.ucla.edu> +2005-07-09 Paul Eggert <eggert@cs.ucla.edu> * Version 5.3.1. + * src/comm.c, src/csplit.c, src/dd.c, src/join.c, src/md5sum.c: + * src/pr.c, src/sort.c, src/tee.c: + Don't include stdio.h; no longer needed. + +2005-07-08 Paul Eggert <eggert@cs.ucla.edu> + Fix porting problems reported by Eric Blake. * configure.ac: Remove check for AC_HEADER_TIOCGWINSZ. diff --git a/src/comm.c b/src/comm.c index a5fd9203a..9b7e03f1f 100644 --- a/src/comm.c +++ b/src/comm.c @@ -19,7 +19,6 @@ #include <config.h> -#include <stdio.h> #include <getopt.h> #include <sys/types.h> #include "system.h" diff --git a/src/csplit.c b/src/csplit.c index 243d30775..f4fe7221c 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -20,7 +20,6 @@ #include <config.h> -#include <stdio.h> #include <getopt.h> #include <sys/types.h> #include <signal.h> @@ -18,7 +18,6 @@ /* Written by Paul Rubin, David MacKenzie, and Stuart Kemp. */ #include <config.h> -#include <stdio.h> #define SWAB_ALIGN_OFFSET 2 diff --git a/src/join.c b/src/join.c index 7b92b47ab..7630ae643 100644 --- a/src/join.c +++ b/src/join.c @@ -19,7 +19,6 @@ #include <config.h> -#include <stdio.h> #include <assert.h> #include <sys/types.h> #include <getopt.h> diff --git a/src/md5sum.c b/src/md5sum.c index e7eac0437..7ef749b7a 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -20,7 +20,6 @@ #include <config.h> #include <getopt.h> -#include <stdio.h> #include <sys/types.h> #include "system.h" @@ -311,7 +311,6 @@ #include <config.h> -#include <stdio.h> #include <getopt.h> #include <sys/types.h> #include "system.h" diff --git a/src/sort.c b/src/sort.c index d99d01680..760faa98f 100644 --- a/src/sort.c +++ b/src/sort.c @@ -26,7 +26,6 @@ #include <getopt.h> #include <sys/types.h> #include <signal.h> -#include <stdio.h> #include "system.h" #include "error.h" #include "hard-locale.h" @@ -18,7 +18,6 @@ /* Mike Parker, Richard M. Stallman, and David MacKenzie */ #include <config.h> -#include <stdio.h> #include <sys/types.h> #include <signal.h> #include <getopt.h> |