Hello - I am trying to eliminate warnings in my code...and have a question...
I have a function
which goes to a file that says:
which finally goes to:
I need to keep these macro definitions there, but it obviously doesn't do anything right now. What can I put in this code to supress that warning??
Thanks!
I have a function
Code:
void function_name(void)
{
functionA();
}
Code:
#define functionA() functionB()
Code:
#define functionB() (0)
Thanks!
Comment