diff options
author | djm@openbsd.org <djm@openbsd.org> | 2014-12-11 08:20:09 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-12-11 19:20:29 +1100 |
commit | 48b68ce19ca42fa488960028048dec023f7899bb (patch) | |
tree | 926ad0be9cfd33becdc5968a855d9c4b7e7c4792 /ssh-keyscan.c | |
parent | d663bea30a294d440fef4398e5cd816317bd4518 (diff) |
upstream commit
explicitly include sys/param.h in files that use the
howmany() macro; from portable
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r-- | ssh-keyscan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 3fabfba1..84301b6f 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.92 2014/04/29 18:01:49 markus Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.93 2014/12/11 08:20:09 djm Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -9,6 +9,8 @@ #include "includes.h" +#include <sys/types.h> +#include <sys/param.h> #include "openbsd-compat/sys-queue.h" #include <sys/resource.h> #ifdef HAVE_SYS_TIME_H |