From: Jonathan Gray Date: Thu, 1 Nov 2018 04:07:32 +0000 (+1100) Subject: intel/tools: include stdarg.h in error2aub X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae8e81b0e300e9ad5c3635378cc0467e8d50f239;p=mesa.git intel/tools: include stdarg.h in error2aub Include stdarg.h in error2aub.c otherwise it fails to build on OpenBSD due to not finding definitions for va_list va_start va_end. Signed-off-by: Jonathan Gray Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c index 8a23d5ef1e7..b6e056cbcde 100644 --- a/src/intel/tools/error2aub.c +++ b/src/intel/tools/error2aub.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include "aub_write.h"