summaryrefslogtreecommitdiff
path: root/src/init.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-28 16:16:53 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-28 16:16:53 +0000
commitbe278d2bb8f67e75c4bb2e5a62f217fe79dc66e3 (patch)
tree423972d21eee308fc8e09315f029e1310bdfda69 /src/init.c
parent72e09121b253e285f89a0e04a0d6de32b9aa3121 (diff)
Remove (void) args, these just make things ugly.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1811 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/init.c b/src/init.c
index 1168a4515..28e2dade3 100644
--- a/src/init.c
+++ b/src/init.c
@@ -16,8 +16,8 @@
#include "pseudo.h"
Uplink *uplink_server;
-extern void moduleAddMsgs(void);
-extern void moduleAddIRCDMsgs(void);
+extern void moduleAddMsgs();
+extern void moduleAddIRCDMsgs();
/*************************************************************************/
@@ -53,7 +53,7 @@ void introduce_user(const char *user)
* defined), else print an error message to logfile and return -1.
*/
-static int set_group(void)
+static int set_group()
{
#if defined(RUNGROUP) && defined(HAVE_SETGRENT)
struct group *gr;
@@ -302,7 +302,7 @@ static int parse_options(int ac, char **av)
/* Remove our PID file. Done at exit. */
-static void remove_pidfile(void)
+static void remove_pidfile()
{
remove(PIDFilename);
}
@@ -311,7 +311,7 @@ static void remove_pidfile(void)
/* Create our PID file and write the PID to it. */
-static void write_pidfile(void)
+static void write_pidfile()
{
FILE *pidfile;