explicitely declare that functions take no parameters

This commit is contained in:
marschap
2007-04-07 17:37:54 +00:00
parent aecb207a23
commit e7f504810d
6 changed files with 17 additions and 12 deletions
+3 -2
View File
@@ -60,7 +60,8 @@ static int pageshift;
#define pagetok(size) ((size) << pageshift)
#define PROCSIZE(pp) ((pp).vm_tsize + (pp).vm_dsize + (pp).vm_ssize)
int machine_init()
int machine_init(void)
{
/* get the page size with "getpagesize" and calculate pageshift from it */
int pagesize = getpagesize();
@@ -77,7 +78,7 @@ int machine_init()
return(TRUE);
}
int machine_close()
int machine_close(void)
{
return(TRUE);
}