1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 17:03:12 +02:00

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
This commit is contained in:
rburchell
2008-11-28 16:16:53 +00:00
parent 72e09121b2
commit be278d2bb8
57 changed files with 209 additions and 209 deletions
+5 -5
View File
@@ -59,7 +59,7 @@ char *ModuleGetErrStr(int status)
/**
*
**/
int encryption_module_init(void) {
int encryption_module_init() {
int ret = 0;
alog("Loading Encryption Module: [%s]", EncModule);
@@ -72,7 +72,7 @@ int encryption_module_init(void) {
/**
* Load the ircd protocol module up
**/
int protocol_module_init(void)
int protocol_module_init()
{
int ret = 0;
@@ -901,7 +901,7 @@ void moduleCallBackPrepForUnload(const char *mod_name)
* This is needed for modules who cant trust the strtok() buffer, as we dont know who will have already messed about with it.
* @reutrn a pointer to a copy of the last buffer - DONT mess with this, copy if first if you must do things to it.
**/
char *moduleGetLastBuffer(void)
char *moduleGetLastBuffer()
{
char *tmp = NULL;
if (mod_current_buffer) {
@@ -1095,7 +1095,7 @@ bool moduleMinVersion(int major, int minor, int patch, int build)
}
#ifdef _WIN32
const char *ano_moderr(void)
const char *ano_moderr()
{
static char errbuf[513];
DWORD err = GetLastError();
@@ -1224,7 +1224,7 @@ void Module::DeleteLanguage(int langNumber)
}
}
void ModuleRunTimeDirCleanUp(void)
void ModuleRunTimeDirCleanUp()
{
#ifndef _WIN32
DIR *dirp;