changeset 28599:3ff0da40013d

cosmetics: Replace unused 'argc/argv' in main declarations by 'void'.
author diego
date Tue, 17 Feb 2009 12:00:43 +0000
parents 4172d83194f2
children 7361c76fa685
files cpuinfo.c loader/qtx/list.c loader/qtx/qtxload.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/cpuinfo.c	Tue Feb 17 11:59:49 2009 +0000
+++ b/cpuinfo.c	Tue Feb 17 12:00:43 2009 +0000
@@ -105,7 +105,7 @@
 
 
 int
-main(int argc, char **argv)
+main(void)
 {
   cpuid_regs_t regs, regs_ext;
   char idstr[13];
--- a/loader/qtx/list.c	Tue Feb 17 11:59:49 2009 +0000
+++ b/loader/qtx/list.c	Tue Feb 17 12:00:43 2009 +0000
@@ -18,7 +18,7 @@
 #define __cdecl   __attribute__((__cdecl__))
 #define APIENTRY 
 
-int main(int argc, char *argv[]){
+int main(void) {
     void *handler;
     ComponentDescription desc;
     Component (*FindNextComponent)(Component prev,ComponentDescription* desc);
--- a/loader/qtx/qtxload.c	Tue Feb 17 11:59:49 2009 +0000
+++ b/loader/qtx/qtxload.c	Tue Feb 17 12:00:43 2009 +0000
@@ -33,7 +33,7 @@
 
 static    OSErr (*InitializeQTML)(long flags);
 
-int main(int argc, char *argv[]){
+int main(void) {
     void *handler;
     void *handler2;
     void* theqtdp=NULL;