diff options
author | djm@openbsd.org <djm@openbsd.org> | 2014-12-11 08:20:09 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-12-11 19:20:29 +1100 |
commit | 48b68ce19ca42fa488960028048dec023f7899bb (patch) | |
tree | 926ad0be9cfd33becdc5968a855d9c4b7e7c4792 /ssh-pkcs11-helper.c | |
parent | d663bea30a294d440fef4398e5cd816317bd4518 (diff) |
upstream commit
explicitly include sys/param.h in files that use the
howmany() macro; from portable
Diffstat (limited to 'ssh-pkcs11-helper.c')
-rw-r--r-- | ssh-pkcs11-helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-pkcs11-helper.c b/ssh-pkcs11-helper.c index 0b1d8e4cc..d487f023b 100644 --- a/ssh-pkcs11-helper.c +++ b/ssh-pkcs11-helper.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-pkcs11-helper.c,v 1.8 2014/06/24 01:13:21 djm Exp $ */ | 1 | /* $OpenBSD: ssh-pkcs11-helper.c,v 1.9 2014/12/11 08:20:09 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -18,6 +18,7 @@ | |||
18 | #include "includes.h" | 18 | #include "includes.h" |
19 | 19 | ||
20 | #include <sys/types.h> | 20 | #include <sys/types.h> |
21 | #include <sys/param.h> | ||
21 | #ifdef HAVE_SYS_TIME_H | 22 | #ifdef HAVE_SYS_TIME_H |
22 | # include <sys/time.h> | 23 | # include <sys/time.h> |
23 | #endif | 24 | #endif |