Is there a way to #define something as a #warning?
I tried using the following code, but it gives me an error:
'warning' undeclared (first use this function)
This is the part of code where the error appears:
#define something #warning This is not a standard function!
int main(void)
{
something
return 0;
}
Any help on this please?
If it's not possible to perform, please tell :)
Thanks in advance ;)