From 4523edce8bf02628425abd9d4daeb232b64662fa Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 24 Sep 1996 08:43:04 +0000 Subject: [PATCH] Really eliminated includes of the "temporary" backwards compatibility header in applications. My previous sweep didn't find the places that included it without needing it. --- gnu/usr.bin/gdb/bfd/trad-core.c | 1 - gnu/usr.bin/gdb/gdb/coredep.c | 1 - gnu/usr.bin/gdb/gdb/infptrace.c | 1 - usr.bin/systat/pigs.c | 1 - usr.sbin/sup/supfilesrv/supfilesrv.c | 16 +++++++++++++++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/gnu/usr.bin/gdb/bfd/trad-core.c b/gnu/usr.bin/gdb/bfd/trad-core.c index 78a70a73741..c79ac3a87ae 100644 --- a/gnu/usr.bin/gdb/bfd/trad-core.c +++ b/gnu/usr.bin/gdb/bfd/trad-core.c @@ -34,7 +34,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include -#include #include #include /* After a.out.h */ diff --git a/gnu/usr.bin/gdb/gdb/coredep.c b/gnu/usr.bin/gdb/gdb/coredep.c index e27d2e48ba6..db75ff622bf 100644 --- a/gnu/usr.bin/gdb/gdb/coredep.c +++ b/gnu/usr.bin/gdb/gdb/coredep.c @@ -29,7 +29,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* These are needed on various systems to expand REGISTER_U_ADDR. */ #ifndef USG -#include #include #include #include diff --git a/gnu/usr.bin/gdb/gdb/infptrace.c b/gnu/usr.bin/gdb/gdb/infptrace.c index 36a4b4c62c9..05f448cfa40 100644 --- a/gnu/usr.bin/gdb/gdb/infptrace.c +++ b/gnu/usr.bin/gdb/gdb/infptrace.c @@ -28,7 +28,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #endif #include -#include #include #include diff --git a/usr.bin/systat/pigs.c b/usr.bin/systat/pigs.c index 002defcc471..fc12e518884 100644 --- a/usr.bin/systat/pigs.c +++ b/usr.bin/systat/pigs.c @@ -41,7 +41,6 @@ static char sccsid[] = "@(#)pigs.c 8.2 (Berkeley) 9/23/93"; #include #include -#include #include #include #include diff --git a/usr.sbin/sup/supfilesrv/supfilesrv.c b/usr.sbin/sup/supfilesrv/supfilesrv.c index 0efbe74d6b9..e348c3bd9ed 100644 --- a/usr.sbin/sup/supfilesrv/supfilesrv.c +++ b/usr.sbin/sup/supfilesrv/supfilesrv.c @@ -42,6 +42,21 @@ * across the network to save BandWidth * * $Log: supfilesrv.c,v $ + * Revision 1.5 1996/09/06 15:40:08 peter + * Rewrite part of the compression support so that it does not leave + * files in /var/tmp. Sup needs to send the file size, so that + * prevents running gzip in a pipeline (sigh). + * + * It now opens a temporary file, and immediately unlinks it. It sends + * gzip's output to the temp file, and when gzip is done, it rewinds the + * file and sends it. When the last fd is closed, the file storage is + * reclaimed. With luck, this will stop those 15MB + * gzip < emacs-19.30.tgz > /var/tmp/tmp.xxxx files from being left behind + * and blowing out /var on freefall. + * + * While I have the platform, let me quote a fortune entry which sup reminds + * me of: "It is a crock of sh!t, and it stinks!" + * * Revision 1.4 1996/02/06 19:03:58 pst * make setproctitle display smaller * @@ -268,7 +283,6 @@ #include #include #include -#include #if MACH #include #endif