In the event you were wondering how to turn off GCC extensions and such.
You can use the -ansi
flag which essentially sets the standard to c89, and turns off GCC features which are incompatible with ISO C90.
See the docs for more information. Check out the -std
flag too.