summaryrefslogtreecommitdiff
path: root/bin/pax/pax.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2012-12-04 02:24:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2012-12-04 02:24:48 +0000
commit9023faa39fcf19063833d6308114568a7657afe7 (patch)
tree5d336083ca440ef5ab91512fe3146dca41bd2485 /bin/pax/pax.c
parent351d7a7c8f7fe76323d05f7456a41536052339e0 (diff)
remove some unnecessary sys/param.h inclusions
Diffstat (limited to 'bin/pax/pax.c')
-rw-r--r--bin/pax/pax.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pax/pax.c b/bin/pax/pax.c
index ee56aba0e63..ea5bfeab99a 100644
--- a/bin/pax/pax.c
+++ b/bin/pax/pax.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pax.c,v 1.33 2012/04/19 04:26:46 deraadt Exp $ */
+/* $OpenBSD: pax.c,v 1.34 2012/12/04 02:24:45 deraadt Exp $ */
/* $NetBSD: pax.c,v 1.5 1996/03/26 23:54:20 mrg Exp $ */
/*-
@@ -34,9 +34,7 @@
* SUCH DAMAGE.
*/
-#include <stdio.h>
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
@@ -48,6 +46,8 @@
#include <err.h>
#include <fcntl.h>
#include <paths.h>
+#include <stdio.h>
+
#include "pax.h"
#include "extern.h"
static int gen_init(void);