From 36bb92ae241403d61dc7a3e5a1696b615be61395 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 7 Mar 2007 11:47:46 +0000 Subject: (svn r9050) -Codechange: Foo(void) -> Foo() --- src/unix.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/unix.cpp') diff --git a/src/unix.cpp b/src/unix.cpp index d4b3899ba..8b3c5f512 100644 --- a/src/unix.cpp +++ b/src/unix.cpp @@ -59,7 +59,7 @@ bool FiosIsRoot(const char *path) #endif } -void FiosGetDrives(void) +void FiosGetDrives() { return; } @@ -130,9 +130,9 @@ void ShowOSErrorBox(const char *buf) } #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 @@ int CDECL main(int argc, char* argv[]) return ret; } -void DeterminePaths(void) +void DeterminePaths() { char *s; @@ -299,7 +299,7 @@ void CSleep(int milliseconds) /** 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"; -- cgit v1.2.3-54-g00ecf