We use #warning to show compile message, like this:
#warning Are you sure it is correct?
Is is possible redefine the #warning and can choice if enable or disable it, like this:
#ifdef ACTIVE_MY_WARNING
#define #my_warning #warning
#else
#define #my_warning
#endif
We can do it in C or not?