diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 02:38:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-04 02:38:52 +0000 |
commit | eee0e689e9639ae0916aa15636959ad9584e203e (patch) | |
tree | e1fd76f998d990060f4d09d8cac55b16df1474b8 /bin/mt | |
parent | ef243207f8630a625d2b953f94c64496751e2574 (diff) |
replace sys/param.h with sys/types.h (and sometimes add limits.h if needed)
ok guenther
Diffstat (limited to 'bin/mt')
-rw-r--r-- | bin/mt/mtrmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mt/mtrmt.c b/bin/mt/mtrmt.c index cc8cb7bd867..01847bc91a8 100644 --- a/bin/mt/mtrmt.c +++ b/bin/mt/mtrmt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtrmt.c,v 1.19 2012/12/04 02:34:05 deraadt Exp $ */ +/* $OpenBSD: mtrmt.c,v 1.20 2012/12/04 02:38:51 deraadt Exp $ */ /* $NetBSD: mtrmt.c,v 1.2 1996/03/06 06:22:07 scottr Exp $ */ /*- @@ -30,7 +30,7 @@ * SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/mtio.h> #include <sys/ioctl.h> #include <sys/socket.h> |