functions without parameters: add missing void

This commit is contained in:
Loïc Gomez 2022-01-09 18:25:26 +01:00 committed by Pierre-Louis Bonicoli
parent 26d34bafab
commit e694dae31c
Signed by: pilou
GPG Key ID: 06914C4A5EDAA6DD
5 changed files with 11 additions and 9 deletions

View File

@ -131,7 +131,7 @@ static int add_server(bip_t *bip, struct server *s, list_t *data)
#define ERRBUFSZ 128 #define ERRBUFSZ 128
extern list_t *root_list; extern list_t *root_list;
extern int yyparse(); extern int yyparse(void);
void conf_die(bip_t *bip, char *fmt, ...) void conf_die(bip_t *bip, char *fmt, ...)
{ {
@ -1101,7 +1101,7 @@ out_conf_error:
return 0; return 0;
} }
void check_rlimits() void check_rlimits(void)
{ {
int r, cklim; int r, cklim;
struct rlimit lt; struct rlimit lt;

View File

@ -2,7 +2,8 @@
* $Id: bip.c,v 1.39 2005/04/21 06:58:50 nohar Exp $ * $Id: bip.c,v 1.39 2005/04/21 06:58:50 nohar Exp $
* *
* This file is part of the bip project * This file is part of the bip project
* Copyright (C) 2004 2005 Arnaud Cornet and Loïc Gomez * Copyright (C) 2004,2005 Arnaud Cornet
* Copyright (C) 2004,2005,2022 Loïc Gomez
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -62,7 +63,7 @@ extern FILE *conf_global_log_file;
void reload_config(int i); void reload_config(int i);
void bad_quit(int i); void bad_quit(int i);
void check_rlimits(); void check_rlimits(void);
void rlimit_cpu_reached(int i); void rlimit_cpu_reached(int i);
void rlimit_bigfile_reached(int i); void rlimit_bigfile_reached(int i);
void conf_die(bip_t *bip, char *fmt, ...); void conf_die(bip_t *bip, char *fmt, ...);
@ -83,7 +84,7 @@ static void usage(char *name)
exit(1); exit(1);
} }
static void version() static void version(void)
{ {
printf( printf(
"Bip IRC Proxy - " PACKAGE_VERSION "\n" "Bip IRC Proxy - " PACKAGE_VERSION "\n"

View File

@ -4,6 +4,7 @@
* *
* This file is part of the bip proproject * This file is part of the bip proproject
* Copyright (C) 2004 Arnaud Cornet * Copyright (C) 2004 Arnaud Cornet
* Copyright (C) 2022 Loïc Gomez
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -24,7 +25,7 @@ extern int linec;
extern int yyerror(char *); extern int yyerror(char *);
int yywrap() int yywrap(void)
{ {
return 1; return 1;
} }

View File

@ -2753,7 +2753,7 @@ void irc_client_free(struct link_client *cli)
free(cli); free(cli);
} }
struct link *irc_link_new() struct link *irc_link_new(void)
{ {
struct link *link; struct link *link;
link = bip_calloc(sizeof(struct link), 1); link = bip_calloc(sizeof(struct link), 1);

View File

@ -272,12 +272,12 @@ void bip_init(bip_t *bip);
struct link_client *irc_client_new(void); struct link_client *irc_client_new(void);
struct link_server *irc_server_new(struct link *link, connection_t *conn); struct link_server *irc_server_new(struct link *link, connection_t *conn);
void irc_server_free(struct link_server *is); void irc_server_free(struct link_server *is);
struct client *client_new(); struct client *client_new(void);
void irc_main(bip_t *); void irc_main(bip_t *);
int ischannel(char p); int ischannel(char p);
void irc_client_close(struct link_client *); void irc_client_close(struct link_client *);
void irc_client_free(struct link_client *); void irc_client_free(struct link_client *);
struct link *irc_link_new(); struct link *irc_link_new(void);
void link_kill(bip_t *bip, struct link *); void link_kill(bip_t *bip, struct link *);
void unbind_from_link(struct link_client *ic); void unbind_from_link(struct link_client *ic);
char *nick_from_ircmask(const char *mask); char *nick_from_ircmask(const char *mask);