What's the best way to suppress "unused parameter" warning in C code.
For instance,
Bool NullFunc(const struct timespec *when, const char *who, unsigned short format, void *data, int len)
{
return TRUE;
}
In C++ I was able to put /.../ around the parameters. But not in C of course.
It gives me "error: parameter name omitted".
Some tips would be appreciated.