I've recently enabled -pedantic
option on gcc and now I've got about two or three pages of "ISO C90 forbids mixed declaration and code" warnings.
My goal with this project is to be able to deploy it on any mainstream system with a c compiler, so I realize it wouldn't be wise to assume that C99 will be supported everywhere, but is it even worth my time to address these warnings?
Are there still systems out there with c compilers that don't support mixed declaration and code?