comparison dbrandom.h @ 1276:9169e4e7cbee

fix empty C prototypes
author Francois Perrad <francois.perrad@gadz.org>
date Fri, 01 Jan 2016 16:30:31 +0100
parents a9e4d66ffb2c
children 17104db7928c 06d52bcb8094
comparison
equal deleted inserted replaced
1275:d49bda490798 1276:9169e4e7cbee
25 #ifndef DROPBEAR_RANDOM_H_ 25 #ifndef DROPBEAR_RANDOM_H_
26 #define DROPBEAR_RANDOM_H_ 26 #define DROPBEAR_RANDOM_H_
27 27
28 #include "includes.h" 28 #include "includes.h"
29 29
30 void seedrandom(); 30 void seedrandom(void);
31 void genrandom(unsigned char* buf, unsigned int len); 31 void genrandom(unsigned char* buf, unsigned int len);
32 void addrandom(unsigned char * buf, unsigned int len); 32 void addrandom(unsigned char * buf, unsigned int len);
33 void gen_random_mpint(mp_int *max, mp_int *rand); 33 void gen_random_mpint(mp_int *max, mp_int *rand);
34 34
35 #endif /* DROPBEAR_RANDOM_H_ */ 35 #endif /* DROPBEAR_RANDOM_H_ */