diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-07-23 14:25:44 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-07-23 14:26:20 +0200 |
commit | 9634ffbf29b3c2493e69d10b37077b09a8cbf5ff (patch) | |
tree | 74f29fc321cd0dc93abf18626e083d53e1a0fd01 /ssh-pkcs11.c | |
parent | Include stdlib.h for free() and calloc(). (diff) | |
download | openssh-9634ffbf29b3c2493e69d10b37077b09a8cbf5ff.tar.xz openssh-9634ffbf29b3c2493e69d10b37077b09a8cbf5ff.zip |
Add headers to prevent warnings w/out OpenSSL.
Diffstat (limited to 'ssh-pkcs11.c')
-rw-r--r-- | ssh-pkcs11.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c index d9413bc4f..45ab80d0a 100644 --- a/ssh-pkcs11.c +++ b/ssh-pkcs11.c @@ -1789,6 +1789,14 @@ out: } #endif /* WITH_PKCS11_KEYGEN */ #else /* ENABLE_PKCS11 */ + +#include <sys/types.h> +#include <stdarg.h> +#include <stdio.h> + +#include "log.h" +#include "sshkey.h" + int pkcs11_init(int interactive) { |