diff options
author | 2014-12-11 08:20:09 +0000 | |
---|---|---|
committer | 2014-12-11 08:20:09 +0000 | |
commit | a12ef936dd4abdb983e31028033152ad1a09e7b9 (patch) | |
tree | e3c4663cbfeb2b0b0b5294eb3db69e03deee7a17 /usr.bin/ssh/ssh-keyscan.c | |
parent | Make quotactlcmd formatting consistent with others (diff) | |
download | wireguard-openbsd-a12ef936dd4abdb983e31028033152ad1a09e7b9.tar.xz wireguard-openbsd-a12ef936dd4abdb983e31028033152ad1a09e7b9.zip |
explicitly include sys/param.h in files that use the howmany() macro;
from portable
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index bb5d74e9ce1..0504cc20ee3 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/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>. * @@ -8,6 +8,7 @@ */ #include <sys/types.h> +#include <sys/param.h> #include <sys/socket.h> #include <sys/queue.h> #include <sys/time.h> |