summaryrefslogtreecommitdiffstats
path: root/kexecdh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2019-10-02 10:54:28 +1000
committerDamien Miller <djm@mindrot.org>2019-10-02 10:54:28 +1000
commitedd1d3a6261aecbf9a55944fd7be1db83571b46e (patch)
treebebd81104eda00c6b432ecb50122fb007338fc1b /kexecdh.c
parent13c508dfed9f25e6e54c984ad00a74ef08539e70 (diff)
remove duplicate #includes
Prompted by Jakub Jelen
Diffstat (limited to 'kexecdh.c')
-rw-r--r--kexecdh.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/kexecdh.c b/kexecdh.c
index be324a83..bcfa3b10 100644
--- a/kexecdh.c
+++ b/kexecdh.c
@@ -211,11 +211,9 @@ kex_ecdh_dec(struct kex *kex, const struct sshbuf *server_blob,
#else
-#include <stdio.h>
-
-#include "sshkey.h"
-#include "kex.h"
-#include "ssherr.h"
+struct kex;
+struct sshbuf;
+struct sshkey;
int
kex_ecdh_keypair(struct kex *kex)