C Unbenutzter Parameter
void some_function(char c, int a __attribute__((unused))) {
__attribute__((unused)) float f;
putchar(c);
}
Clever Cowfish
void some_function(char c, int a __attribute__((unused))) {
__attribute__((unused)) float f;
putchar(c);
}