Hi,
How to write a macro which calls goto END_ label?
For ex:
#define MY_MACRO() \
//How to define goto END_##function_name label??
my_function()
{
MY_MACRO();
END_my_function:
return;
}
The MY_MACRO should simply replace with the line
goto END_my_function;