diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 02:24:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 02:24:48 +0000 |
commit | 9023faa39fcf19063833d6308114568a7657afe7 (patch) | |
tree | 5d336083ca440ef5ab91512fe3146dca41bd2485 /bin/chmod/chmod.c | |
parent | 351d7a7c8f7fe76323d05f7456a41536052339e0 (diff) |
remove some unnecessary sys/param.h inclusions
Diffstat (limited to 'bin/chmod/chmod.c')
-rw-r--r-- | bin/chmod/chmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chmod/chmod.c b/bin/chmod/chmod.c index 5be7ce267cb..df30e703c9f 100644 --- a/bin/chmod/chmod.c +++ b/bin/chmod/chmod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chmod.c,v 1.27 2011/03/09 12:32:02 okan Exp $ */ +/* $OpenBSD: chmod.c,v 1.28 2012/12/04 02:24:46 deraadt Exp $ */ /* $NetBSD: chmod.c,v 1.12 1995/03/21 09:02:09 cgd Exp $ */ /* @@ -30,7 +30,7 @@ * SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/stat.h> #include <err.h> |