In Eclipse I have this C program. It compiles fine in Eclipse in Windows, but when I try to compile it in Eclipse in OSX, I get several of these errors.
Symbol 'NULL' could not be resolved
The code that causes it is this:
pdPASS != xTaskCreate( uartUI, (signed char*)"Uart UI", STACK_BYTES(1024*6), &System, PRIORITY_LOW, &System.task.userInterface )
Why is Eclipse showing this error for the same program in OSX but not in Windows?