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/date/date.c | |
parent | ef243207f8630a625d2b953f94c64496751e2574 (diff) |
replace sys/param.h with sys/types.h (and sometimes add limits.h if needed)
ok guenther
Diffstat (limited to 'bin/date/date.c')
-rw-r--r-- | bin/date/date.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index b6a2a4f807c..a6be81cc3dd 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -1,4 +1,4 @@ -/* $OpenBSD: date.c,v 1.37 2011/07/08 18:07:16 deraadt Exp $ */ +/* $OpenBSD: date.c,v 1.38 2012/12/04 02:38:50 deraadt Exp $ */ /* $NetBSD: date.c,v 1.11 1995/09/07 06:21:05 jtc Exp $ */ /* @@ -30,7 +30,7 @@ * SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/time.h> #include <ctype.h> |