Mercurial > hg > openttd
diff src/unix.cpp @ 6247:57363e064324 draft
(svn r9050) -Codechange: Foo(void) -> Foo()
author | rubidium <rubidium@openttd.org> |
---|---|
date | Wed, 07 Mar 2007 11:47:46 +0000 |
parents | 1d99c3541c11 |
children | bd24b660fbe8 |
line wrap: on
line diff
--- a/src/unix.cpp +++ b/src/unix.cpp @@ -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";