From: Jan Beulich Date: Thu, 6 Jul 2023 07:06:27 +0000 (+0200) Subject: xenstore: talloc.h needs to include stdarg.h X-Git-Tag: 4.18.0-rc1~470 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=68c85cf3a83a54fe20cc5feb8365848b7b12ee8e;p=xen.git xenstore: talloc.h needs to include stdarg.h talloc_vasprintf() has a va_list type parameter, so this type needs to be defined (independent of the particular libc implementation). Fixes: 63b6419d2a2d ("tools/xenstore: split out rest of live update control code") Signed-off-by: Jan Beulich Reviewed-by: Juergen Gross --- diff --git a/tools/xenstore/talloc.h b/tools/xenstore/talloc.h index a0f4bff257..518fcac151 100644 --- a/tools/xenstore/talloc.h +++ b/tools/xenstore/talloc.h @@ -24,6 +24,7 @@ License along with this library; If not, see . */ +#include #include #include "utils.h"