src/unix.cpp
changeset 6247 7d81e3a5d803
parent 6240 9d9874ef9f0b
child 6298 01c80746f308
--- a/src/unix.cpp	Tue Mar 06 23:42:30 2007 +0000
+++ b/src/unix.cpp	Wed Mar 07 11:47:46 2007 +0000
@@ -59,7 +59,7 @@
 #endif
 }
 
-void FiosGetDrives(void)
+void FiosGetDrives()
 {
 	return;
 }
@@ -130,9 +130,9 @@
 }
 
 #ifdef WITH_COCOA
-void cocoaSetWorkingDirectory(void);
-void cocoaSetupAutoreleasePool(void);
-void cocoaReleaseAutoreleasePool(void);
+void cocoaSetWorkingDirectory();
+void cocoaSetupAutoreleasePool();
+void cocoaReleaseAutoreleasePool();
 #endif
 
 int CDECL main(int argc, char* argv[])
@@ -168,7 +168,7 @@
 	return ret;
 }
 
-void DeterminePaths(void)
+void DeterminePaths()
 {
 	char *s;
 
@@ -299,7 +299,7 @@
 /** Try and try to decipher the current locale from environmental
  * variables. MacOSX is hardcoded, other OS's are dynamic. If no suitable
  * locale can be found, don't do any conversion "" */
-static const char *GetLocalCode(void)
+static const char *GetLocalCode()
 {
 #if defined(__APPLE__)
 	return "UTF-8-MAC";