X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fcrypto.h;h=4c7d23bfa2dca65047ab216447be53aa194b216d;hb=8c8dfd6686a3d4cc11c20a09c8dfbc8321b07cdb;hp=c9abddd52cf3d63be39ec62a162caf3b97704fe6;hpb=5822f817aa802c2c5a83e9d99a8ae78cb822799b;p=tinc diff --git a/src/crypto.h b/src/crypto.h index c9abddd5..4c7d23bf 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -1,6 +1,8 @@ #ifndef TINC_CRYPTO_H #define TINC_CRYPTO_H +#include "system.h" + /* crypto.h -- header for crypto.c Copyright (C) 2007-2013 Guus Sliepen @@ -20,8 +22,8 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -extern void crypto_init(); -extern void crypto_exit(); -extern void randomize(void *, size_t); +extern void crypto_init(void); +extern void crypto_exit(void); +extern void randomize(void *buf, size_t buflen); #endif