summaryrefslogtreecommitdiffstats
path: root/kexecdh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2019-10-02 02:54:28 +0200
committerDamien Miller <djm@mindrot.org>2019-10-02 02:54:28 +0200
commitedd1d3a6261aecbf9a55944fd7be1db83571b46e (patch)
treebebd81104eda00c6b432ecb50122fb007338fc1b /kexecdh.c
parenttypo in comment (diff)
downloadopenssh-edd1d3a6261aecbf9a55944fd7be1db83571b46e.tar.xz
openssh-edd1d3a6261aecbf9a55944fd7be1db83571b46e.zip
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 be324a838..bcfa3b107 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)