diff src/fios.cpp @ 6247:57363e064324 draft

(svn r9050) -Codechange: Foo(void) -> Foo()
author rubidium <rubidium@openttd.org>
date Wed, 07 Mar 2007 11:47:46 +0000 (2007-03-07)
parents 1d99c3541c11
children 9953c75f16bc
line wrap: on
line diff
--- a/src/fios.cpp
+++ b/src/fios.cpp
@@ -34,7 +34,7 @@
 extern bool FiosIsRoot(const char *path);
 extern bool FiosIsValidFile(const char *path, const struct dirent *ent, struct stat *sb);
 extern bool FiosIsHiddenFile(const struct dirent *ent);
-extern void FiosGetDrives(void);
+extern void FiosGetDrives();
 extern bool FiosGetDiskFreeSpace(const char *path, uint32 *tot);
 
 /* get the name of an oldstyle savegame */
@@ -44,7 +44,7 @@
  * Allocate a new FiosItem.
  * @return A pointer to the newly allocated FiosItem.
  */
-FiosItem *FiosAlloc(void)
+FiosItem *FiosAlloc()
 {
 	if (_fios_count == _fios_alloc) {
 		_fios_alloc += 256;
@@ -78,7 +78,7 @@
 /**
  * Free the list of savegames
  */
-void FiosFreeSavegameList(void)
+void FiosFreeSavegameList()
 {
 	free(_fios_items);
 	_fios_items = NULL;