Предполагается, что эта программа:
#include <stdio.h>
#include <string.h>
static void ring_pool_alloc(void **p, size_t n) {
static unsigned char pool[256], i = 0;
*p = &pool[i];
i += n;
}
int main(void) {
char *str;
ring_pool_alloc(&str, 7);
strcpy(str, "foobar");
printf("%s\n", str);
return 0;
}
... можно ли как-то избежать предупреждения GCC
test.c:12: warning: passing argument 1 of ‘ring_pool_alloc’ from incompatible pointer type
test.c:4: note: expected ‘void **’ but argument is of type ‘char **’
... без приведения (void **) (или просто отключения проверки совместимости)? Потому что я очень хотел бы сохранить предупреждения о совместимости относительно уровня косвенности ...