Use (void) instead of void

This commit is contained in:
2022-10-13 15:59:16 +02:00
parent 92779e5dba
commit 54313551fc
9 changed files with 23 additions and 23 deletions

View File

@@ -55,10 +55,10 @@ typedef struct {
extern t_config *config;
extern char geoip_dir[256], dns_server[256];
int config_init();
int config_init(void);
int config_load(const char *filename);
int config_unload();
int config_unload(void);
#endif //SESIMOS_CONFIG_H