cc -O2 -pipe -pthread -Wall -Wextra -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations stdio/vdprintf.c -o stdio/vdprintf -D_POSIX_C_SOURCE=202405L -lm -lpthread stdio/vdprintf.c:5:39: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Werror,-Wimplicit-int] int (*foo)(int, const char *restrict, va_list) = vdprintf; ^ int stdio/vdprintf.c:5:7: error: incompatible function pointer types initializing 'int (*)(int, const char *restrict, int)' with an expression of type 'int (int, const char *restrict, struct __va_list_tag *)' [-Werror,-Wincompatible-function-pointer-types] int (*foo)(int, const char *restrict, va_list) = vdprintf; ^ ~~~~~~~~ 2 errors generated.