From: Lionel Landwerlin Date: Fri, 9 Aug 2019 12:59:10 +0000 (+0300) Subject: mesa: add stddef include in preparation for dropping p_compiler.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7abac7a8bfcf3f84a9de6726413c516b07adc22c;p=mesa.git mesa: add stddef include in preparation for dropping p_compiler.h Signed-off-by: Lionel Landwerlin Reviewed-by: Alyssa Rosenzweig Acked-by: Eric Engestrom --- diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c index 6f91dbd1915..d3f89ee7cb7 100644 --- a/src/mesa/math/m_matrix.c +++ b/src/mesa/math/m_matrix.c @@ -33,6 +33,7 @@ * -# Transformation of a point p by a matrix M is: p' = M * p */ +#include #include "c99_math.h" #include "main/errors.h" diff --git a/src/mesa/math/m_vector.c b/src/mesa/math/m_vector.c index 0f7c52a4ff1..f25b7b20642 100644 --- a/src/mesa/math/m_vector.c +++ b/src/mesa/math/m_vector.c @@ -27,6 +27,7 @@ */ #include +#include #include "main/glheader.h" #include "main/imports.h"