diff options
author | Damien Miller <djm@mindrot.org> | 2010-02-12 09:49:06 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-02-12 09:49:06 +1100 |
commit | 8ad0fbd98e5ffd98c25f88881981336508ae90d7 (patch) | |
tree | b5819c4170a242ac70fec9488869e9bb22508175 /ssh-pkcs11-helper.c | |
parent | d8f60022727f1d57efe7261b856d5e84a4b28cbe (diff) |
- (djm) [ssh-pkcs11-client.c ssh-pkcs11-helper.c ssh-pkcs11.c]
Make it compile on OSX
Diffstat (limited to 'ssh-pkcs11-helper.c')
-rw-r--r-- | ssh-pkcs11-helper.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ssh-pkcs11-helper.c b/ssh-pkcs11-helper.c index f9962709b..464209641 100644 --- a/ssh-pkcs11-helper.c +++ b/ssh-pkcs11-helper.c | |||
@@ -14,9 +14,14 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <sys/queue.h> | 17 | #include "includes.h" |
18 | |||
18 | #include <sys/types.h> | 19 | #include <sys/types.h> |
19 | #include <sys/time.h> | 20 | #ifdef HAVE_SYS_TIME_H |
21 | # include <sys/time.h> | ||
22 | #endif | ||
23 | |||
24 | #include "openbsd-compat/sys-queue.h" | ||
20 | 25 | ||
21 | #include <stdarg.h> | 26 | #include <stdarg.h> |
22 | #include <string.h> | 27 | #include <string.h> |