diff options
author | djm@openbsd.org <djm@openbsd.org> | 2014-12-11 09:20:09 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-12-11 09:20:29 +0100 |
commit | 48b68ce19ca42fa488960028048dec023f7899bb (patch) | |
tree | 926ad0be9cfd33becdc5968a855d9c4b7e7c4792 /includes.h | |
parent | upstream commit (diff) | |
download | openssh-48b68ce19ca42fa488960028048dec023f7899bb.tar.xz openssh-48b68ce19ca42fa488960028048dec023f7899bb.zip |
upstream commit
explicitly include sys/param.h in files that use the
howmany() macro; from portable
Diffstat (limited to 'includes.h')
-rw-r--r-- | includes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes.h b/includes.h index 07bcd89f2..095161c28 100644 --- a/includes.h +++ b/includes.h @@ -23,6 +23,7 @@ #endif #include <sys/types.h> +#include <sys/param.h> #include <sys/socket.h> /* For CMSG_* */ #ifdef HAVE_LIMITS_H |