From 4c7196b684fe384599c1a02bf20aec7b6447968d Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Thu, 16 Jul 2015 01:17:37 +1000 Subject: [PATCH] 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 --- src/mesa/main/errors.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/errors.h b/src/mesa/main/errors.h index 24f234f..81e47a8 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" -- 2.7.4