gcc -pthread   -Wall -Wextra -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations stdio/vasprintf.c -o stdio/vasprintf -D_POSIX_C_SOURCE=202405L -lm -lpthread -lrt -lxnet  -lsocket -latomic
stdio/vasprintf.c:5:51: error: unknown type name ‘va_list’
    5 | int (*foo)(char **restrict, const char *restrict, va_list) = vasprintf;
      |                                                   ^~~~~~~
stdio/vasprintf.c:2:1: note: ‘va_list’ is defined in header ‘<stdarg.h>’; this is probably fixable by adding ‘#include <stdarg.h>’
    1 | #include <stdio.h>
  +++ |+#include <stdarg.h>
    2 | #ifdef vasprintf
