changeset 26634:e183e2464abc

cosmetics: Remove unused argc/argv parameters from test programs.
author diego
date Sat, 03 May 2008 20:07:04 +0000
parents f2c7d68935d4
children 540968176bbf
files configure
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat May 03 20:03:36 2008 +0000
+++ b/configure	Sat May 03 20:07:04 2008 +0000
@@ -3598,8 +3598,7 @@
   cat > $TMPC <<EOF
 #include <stdio.h>
 #include <IOKit/IOCFPlugIn.h>
-int main(int argc, const char * argv[])
-{
+int main(void) {
   io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
   CFMutableDictionaryRef hidMatchDictionary;
   IOReturn ioReturnValue;
@@ -4734,7 +4733,7 @@
 if test "$_sdl" = auto || test "$_sdl" = yes ; then
   cat > $TMPC << EOF
 #include <SDL.h>
-int main(int argc, char *argv[]) {
+int main(void) {
   SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
   return 0;
 }