# HG changeset patch # User diego # Date 1234872043 0 # Node ID 3ff0da40013d9d283e59e533ba6b742d3b744702 # Parent 4172d83194f26f1eb2f88e8fc589ba76d275af9b cosmetics: Replace unused 'argc/argv' in main declarations by 'void'. diff -r 4172d83194f2 -r 3ff0da40013d cpuinfo.c --- 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]; diff -r 4172d83194f2 -r 3ff0da40013d loader/qtx/list.c --- 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); diff -r 4172d83194f2 -r 3ff0da40013d loader/qtx/qtxload.c --- 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;