An "Ansi/ISO C99 standard compatibility" option should be
added.
gcc -std=c99 -output -input.c (for mingw)
Also other options like this should be implemented in
compiler menu:
-std=c89 (it is now as support ansi... or som. like this)
-std=c90
Maybe -pedantic option can improve this:
gcc -std=c99 -output -input.c
but I am not sure.
(
So maybe this option is the best to force C99
compatibility:
gcc -pedantic -std=c99 -output input.c
?)
Summary:
new switches:
-std=c99
-std=c90
-std=c89