summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-07-09 22:10:38 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-07-09 22:10:38 +0000
commit580d1e6d6d97c3e6f0fca764091e70319350c9a2 (patch)
treec13b378f7660a7b30c4f075579fff60f312b5810
parent531b803d836882711c68158bd5bac02c3c1e95a9 (diff)
downloadcoreutils-580d1e6d6d97c3e6f0fca764091e70319350c9a2.tar.xz
Don't include stdio.h; no longer needed.
-rw-r--r--ChangeLog8
-rw-r--r--src/comm.c1
-rw-r--r--src/csplit.c1
-rw-r--r--src/dd.c1
-rw-r--r--src/join.c1
-rw-r--r--src/md5sum.c1
-rw-r--r--src/pr.c1
-rw-r--r--src/sort.c1
-rw-r--r--src/tee.c1
9 files changed, 7 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 75e8efa6d..aa33c39c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
diff --git a/src/dd.c b/src/dd.c
index f8ece81cf..b711a738d 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -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"
diff --git a/src/pr.c b/src/pr.c
index 3438fafb4..3344e76df 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -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"
diff --git a/src/tee.c b/src/tee.c
index 07619da1e..fa971b37b 100644
--- a/src/tee.c
+++ b/src/tee.c
@@ -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>