From ac3905a6fe0e507e0c1b3f06669aae071f626fe9 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Fri, 1 Jan 2016 16:30:31 +0100 Subject: fix empty C prototypes --- common-kex.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'common-kex.c') diff --git a/common-kex.c b/common-kex.c index c7004e6..5003d2f 100644 --- a/common-kex.c +++ b/common-kex.c @@ -38,13 +38,13 @@ #include "ecc.h" #include "crypto_desc.h" -static void kexinitialise(); -static void gen_new_keys(); +static void kexinitialise(void); +static void gen_new_keys(void); #ifndef DISABLE_ZLIB -static void gen_new_zstream_recv(); -static void gen_new_zstream_trans(); +static void gen_new_zstream_recv(void); +static void gen_new_zstream_trans(void); #endif -static void read_kex_algos(); +static void read_kex_algos(void); /* helper function for gen_new_keys */ static void hashkeys(unsigned char *out, unsigned int outlen, const hash_state * hs, const unsigned char X); -- cgit v1.2.1