diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2014-12-11 08:20:10 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2014-12-11 08:20:10 +0000 |
commit | b87aebf5643f19767d808616f849aa45d7893a3b (patch) | |
tree | a70dd69ed97726dcf4144e26b86a2459574efeb0 /usr.bin/ssh/sshd.c | |
parent | 07c2fb34936e3aa3f968d0ec87ce67836233473e (diff) |
explicitly include sys/param.h in files that use the howmany() macro;
from portable
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r-- | usr.bin/ssh/sshd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 3cda0d2dfc6..ffdb58a4c29 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.428 2014/07/15 15:54:14 millert Exp $ */ +/* $OpenBSD: sshd.c,v 1.429 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 @@ -43,6 +43,7 @@ */ #include <sys/types.h> +#include <sys/param.h> #include <sys/ioctl.h> #include <sys/wait.h> #include <sys/tree.h> |