From: Jonathan Gray Date: Wed, 15 Jul 2015 15:17:37 +0000 (+1000) Subject: mesa: include stdarg.h for va_list X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c7196b684fe384599c1a02bf20aec7b6447968d;p=mesa.git mesa: include stdarg.h for va_list Include stdarg.h for va_list. Unbreaks the build on OpenBSD: In file included from mesa/program/dummy_errors.c:24: ../src/mesa/main/errors.h:85: error: expected declaration specifiers or '...' before 'va_list' Signed-off-by: Jonathan Gray Acked-by: Matt Turner Reviewed-by: Ilia Mirkin --- diff --git a/src/mesa/main/errors.h b/src/mesa/main/errors.h index 24f234f7f10..81e47a8b8c1 100644 --- a/src/mesa/main/errors.h +++ b/src/mesa/main/errors.h @@ -37,6 +37,7 @@ #include +#include #include "compiler.h" #include "glheader.h" #include "mtypes.h"