summaryrefslogtreecommitdiff
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2014-12-11 08:20:09 +0000
committerDamien Miller <djm@mindrot.org>2014-12-11 19:20:29 +1100
commit48b68ce19ca42fa488960028048dec023f7899bb (patch)
tree926ad0be9cfd33becdc5968a855d9c4b7e7c4792 /ssh-keyscan.c
parentd663bea30a294d440fef4398e5cd816317bd4518 (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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 3fabfba14..84301b6ff 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keyscan.c,v 1.92 2014/04/29 18:01:49 markus Exp $ */ 1/* $OpenBSD: ssh-keyscan.c,v 1.93 2014/12/11 08:20:09 djm Exp $ */
2/* 2/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. 3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 * 4 *
@@ -9,6 +9,8 @@
9 9
10#include "includes.h" 10#include "includes.h"
11 11
12#include <sys/types.h>
13#include <sys/param.h>
12#include "openbsd-compat/sys-queue.h" 14#include "openbsd-compat/sys-queue.h"
13#include <sys/resource.h> 15#include <sys/resource.h>
14#ifdef HAVE_SYS_TIME_H 16#ifdef HAVE_SYS_TIME_H