comparison runopts.h @ 1276:9169e4e7cbee

fix empty C prototypes
author Francois Perrad <francois.perrad@gadz.org>
date Fri, 01 Jan 2016 16:30:31 +0100
parents 64a50eac1030
children a23386821e9f b28624698130
comparison
equal deleted inserted replaced
1275:d49bda490798 1276:9169e4e7cbee
62 62
63 extern runopts opts; 63 extern runopts opts;
64 64
65 int readhostkey(const char * filename, sign_key * hostkey, 65 int readhostkey(const char * filename, sign_key * hostkey,
66 enum signkey_type *type); 66 enum signkey_type *type);
67 void load_all_hostkeys(); 67 void load_all_hostkeys(void);
68 68
69 typedef struct svr_runopts { 69 typedef struct svr_runopts {
70 70
71 char * bannerfile; 71 char * bannerfile;
72 72
117 } svr_runopts; 117 } svr_runopts;
118 118
119 extern svr_runopts svr_opts; 119 extern svr_runopts svr_opts;
120 120
121 void svr_getopts(int argc, char ** argv); 121 void svr_getopts(int argc, char ** argv);
122 void loadhostkeys(); 122 void loadhostkeys(void);
123 123
124 typedef struct cli_runopts { 124 typedef struct cli_runopts {
125 125
126 char *progname; 126 char *progname;
127 char *remotehost; 127 char *remotehost;
168 168
169 extern cli_runopts cli_opts; 169 extern cli_runopts cli_opts;
170 void cli_getopts(int argc, char ** argv); 170 void cli_getopts(int argc, char ** argv);
171 171
172 #ifdef ENABLE_USER_ALGO_LIST 172 #ifdef ENABLE_USER_ALGO_LIST
173 void parse_ciphers_macs(); 173 void parse_ciphers_macs(void);
174 #endif 174 #endif
175 175
176 void print_version(void); 176 void print_version(void);
177 177
178 #endif /* DROPBEAR_RUNOPTS_H_ */ 178 #endif /* DROPBEAR_RUNOPTS_H_ */