summaryrefslogtreecommitdiffstats
path: root/bin/pax
diff options
context:
space:
mode:
authoreivind <eivind@FreeBSD.org>1997-12-10 22:18:54 +0000
committereivind <eivind@FreeBSD.org>1997-12-10 22:18:54 +0000
commit2208ac1acff642528ab86ad928de033b2ebec1ab (patch)
treee10c194abd1c5b693eae26b6ecf96e904dcfc92d /bin/pax
parentdb8034d25a40e9c0c216d0d4a0f6a3679b6d6e42 (diff)
downloadFreeBSD-src-2208ac1acff642528ab86ad928de033b2ebec1ab.zip
FreeBSD-src-2208ac1acff642528ab86ad928de033b2ebec1ab.tar.gz
Remove simultaneous include of <sys/param.h> and <sys/types.h>.
Reorder includes to be alphabetical some places since I already was in here.
Diffstat (limited to 'bin/pax')
-rw-r--r--bin/pax/ar_io.c4
-rw-r--r--bin/pax/ar_subs.c3
-rw-r--r--bin/pax/buf_subs.c5
-rw-r--r--bin/pax/cache.c4
-rw-r--r--bin/pax/cpio.c3
-rw-r--r--bin/pax/file_subs.c3
-rw-r--r--bin/pax/ftree.c3
-rw-r--r--bin/pax/gen_subs.c3
-rw-r--r--bin/pax/options.c4
-rw-r--r--bin/pax/pat_rep.c4
-rw-r--r--bin/pax/pax.c11
-rw-r--r--bin/pax/sel_subs.c3
-rw-r--r--bin/pax/tables.c7
-rw-r--r--bin/pax/tar.c3
-rw-r--r--bin/pax/tty_subs.c5
15 files changed, 21 insertions, 44 deletions
diff --git a/bin/pax/ar_io.c b/bin/pax/ar_io.c
index 8cb5a3b..d1f955f 100644
--- a/bin/pax/ar_io.c
+++ b/bin/pax/ar_io.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ar_io.c,v 1.7 1997/02/22 14:04:17 peter Exp $
+ * $Id: ar_io.c,v 1.8 1997/08/29 16:12:19 sos Exp $
*/
#ifndef lint
@@ -42,11 +42,9 @@ static char const sccsid[] = "@(#)ar_io.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/mtio.h>
-#include <sys/param.h>
#include <signal.h>
#include <string.h>
#include <fcntl.h>
diff --git a/bin/pax/ar_subs.c b/bin/pax/ar_subs.c
index 6e4ecf5..a3be1c9 100644
--- a/bin/pax/ar_subs.c
+++ b/bin/pax/ar_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ar_subs.c,v 1.7 1997/02/22 14:04:19 peter Exp $
+ * $Id: ar_subs.c,v 1.8 1997/08/29 16:12:19 sos Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)ar_subs.c 8.2 (Berkeley) 4/18/94";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <signal.h>
#include <string.h>
#include <stdio.h>
diff --git a/bin/pax/buf_subs.c b/bin/pax/buf_subs.c
index 6a579c5..335bc1f 100644
--- a/bin/pax/buf_subs.c
+++ b/bin/pax/buf_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: buf_subs.c,v 1.7 1997/02/22 14:04:20 peter Exp $
+ * $Id: buf_subs.c,v 1.8 1997/08/29 16:12:20 sos Exp $
*/
#ifndef lint
@@ -42,10 +42,7 @@ static char const sccsid[] = "@(#)buf_subs.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
-#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
diff --git a/bin/pax/cache.c b/bin/pax/cache.c
index 56f59f1..b2a23e1 100644
--- a/bin/pax/cache.c
+++ b/bin/pax/cache.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: cache.c,v 1.7 1997/06/02 06:30:06 charnier Exp $
+ * $Id: cache.c,v 1.8 1997/08/29 16:12:21 sos Exp $
*/
#ifndef lint
@@ -42,9 +42,7 @@ static char const sccsid[] = "@(#)cache.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <string.h>
#include <stdio.h>
#include <pwd.h>
diff --git a/bin/pax/cpio.c b/bin/pax/cpio.c
index 23bbc78..c1e43cf 100644
--- a/bin/pax/cpio.c
+++ b/bin/pax/cpio.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: cpio.c,v 1.7 1997/02/22 14:04:23 peter Exp $
+ * $Id: cpio.c,v 1.8 1997/08/29 16:12:21 sos Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)cpio.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/bin/pax/file_subs.c b/bin/pax/file_subs.c
index f4bcee2..baabde9 100644
--- a/bin/pax/file_subs.c
+++ b/bin/pax/file_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: file_subs.c,v 1.7 1997/02/22 14:04:26 peter Exp $
+ * $Id: file_subs.c,v 1.8 1997/08/29 16:12:23 sos Exp $
*/
#ifndef lint
@@ -45,7 +45,6 @@ static char const sccsid[] = "@(#)file_subs.c 8.1 (Berkeley) 5/31/93";
#include <sys/time.h>
#include <sys/stat.h>
#include <unistd.h>
-#include <sys/param.h>
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
diff --git a/bin/pax/ftree.c b/bin/pax/ftree.c
index 00dce37..e2db74d 100644
--- a/bin/pax/ftree.c
+++ b/bin/pax/ftree.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ftree.c,v 1.7 1997/02/22 14:04:27 peter Exp $
+ * $Id: ftree.c,v 1.8 1997/08/29 16:12:24 sos Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)ftree.c 8.2 (Berkeley) 4/18/94";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
diff --git a/bin/pax/gen_subs.c b/bin/pax/gen_subs.c
index bf6a404..4777a19 100644
--- a/bin/pax/gen_subs.c
+++ b/bin/pax/gen_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: gen_subs.c,v 1.9 1997/02/22 14:04:31 peter Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)gen_subs.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <stdio.h>
#include <utmp.h>
#include <unistd.h>
diff --git a/bin/pax/options.c b/bin/pax/options.c
index ef0b1c7..66fc3e3 100644
--- a/bin/pax/options.c
+++ b/bin/pax/options.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: options.c,v 1.8 1997/03/28 15:24:27 imp Exp $
+ * $Id: options.c,v 1.9 1997/08/29 16:12:27 sos Exp $
*/
#ifndef lint
@@ -42,10 +42,8 @@ static char const sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
#include <sys/mtio.h>
-#include <sys/param.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
diff --git a/bin/pax/pat_rep.c b/bin/pax/pat_rep.c
index 2933e1f..800162b 100644
--- a/bin/pax/pat_rep.c
+++ b/bin/pax/pat_rep.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pat_rep.c,v 1.9 1997/06/02 06:30:06 charnier Exp $
+ * $Id: pat_rep.c,v 1.10 1997/08/29 16:12:27 sos Exp $
*/
#ifndef lint
@@ -42,9 +42,7 @@ static char const sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
diff --git a/bin/pax/pax.c b/bin/pax/pax.c
index 7199f95..6bb34be 100644
--- a/bin/pax/pax.c
+++ b/bin/pax/pax.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pax.c,v 1.8 1997/02/22 14:04:39 peter Exp $
+ * $Id: pax.c,v 1.9 1997/08/29 16:12:28 sos Exp $
*/
#ifndef lint
@@ -47,17 +47,16 @@ static char const copyright[] =
static char const sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
-#include <stdio.h>
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
-#include <signal.h>
-#include <unistd.h>
-#include <stdlib.h>
#include <errno.h>
#include <locale.h>
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
#include "pax.h"
#include "extern.h"
static int gen_init __P((void));
diff --git a/bin/pax/sel_subs.c b/bin/pax/sel_subs.c
index b740aed..47aca3d 100644
--- a/bin/pax/sel_subs.c
+++ b/bin/pax/sel_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: sel_subs.c,v 1.6 1997/02/22 14:04:41 peter Exp $
+ * $Id: sel_subs.c,v 1.7 1997/08/29 16:12:29 sos Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)sel_subs.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <pwd.h>
#include <grp.h>
#include <stdio.h>
diff --git a/bin/pax/tables.c b/bin/pax/tables.c
index 619b5e9..87da13b 100644
--- a/bin/pax/tables.c
+++ b/bin/pax/tables.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: tables.c,v 1.8 1997/06/02 06:30:06 charnier Exp $
+ * $Id: tables.c,v 1.9 1997/08/29 16:12:29 sos Exp $
*/
#ifndef lint
@@ -44,13 +44,12 @@ static char const sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <sys/fcntl.h>
+#include <errno.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <errno.h>
-#include <stdlib.h>
#include "pax.h"
#include "tables.h"
#include "extern.h"
diff --git a/bin/pax/tar.c b/bin/pax/tar.c
index c528da9..c16cdb9 100644
--- a/bin/pax/tar.c
+++ b/bin/pax/tar.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: tar.c,v 1.7 1997/02/22 14:04:45 peter Exp $
+ * $Id: tar.c,v 1.8 1997/08/29 16:12:30 sos Exp $
*/
#ifndef lint
@@ -44,7 +44,6 @@ static char const sccsid[] = "@(#)tar.c 8.2 (Berkeley) 4/18/94";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/bin/pax/tty_subs.c b/bin/pax/tty_subs.c
index 51272ac..afeb1f2 100644
--- a/bin/pax/tty_subs.c
+++ b/bin/pax/tty_subs.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: tty_subs.c,v 1.6 1997/02/22 14:04:47 peter Exp $
+ * $Id: tty_subs.c,v 1.7 1997/08/29 16:12:30 sos Exp $
*/
#ifndef lint
@@ -42,12 +42,9 @@ static char const sccsid[] = "@(#)tty_subs.c 8.2 (Berkeley) 4/18/94";
#endif /* not lint */
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/stat.h>
-#include <sys/param.h>
#include <fcntl.h>
#include <stdio.h>
-#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
OpenPOWER on IntegriCloud