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/sshconnect.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/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 7284ec35410..feab699ad95 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.252 2014/12/04 02:24:32 djm Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.253 2014/12/11 08:20:09 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -14,6 +14,7 @@ */ #include <sys/types.h> +#include <sys/param.h> #include <sys/wait.h> #include <sys/stat.h> #include <sys/socket.h> |