Is syntax highlighting different with C89/C90 ?
I think so, e.g. In-Line-Comments ...
#include <stdio.h>
#include <stdlib.h>
int main()
{
// Comment
printf("Hello world!\n");
return 0;
}
does not compile ...
gcc.exe -Wall -std=c90 -g -c C:\script\C\Sandbox\main.c -o obj\Debug\main.o
gcc.exe -o bin\Debug\Sandbox.exe obj\Debug\main.o
C:\script\C\Sandbox\main.c: In function 'main':
C:\script\C\Sandbox\main.c:6:5: error: C++ style comments are not allowed in ISO C90
// Comment
^
Also the StdLib is different and this should be considered as well.