Question
Changing default parameters of main()
I've got an application where the main() function needs to be non-standard. In older version of GCC this wasn't an issue but the newer versions seem to have changed something
I need:
void main(long long int *c, long long int *b)
but GCC is overriding this. Is there a compiler switch to let me do what has worked fine previously?
Thanks
