From 7abac7a8bfcf3f84a9de6726413c516b07adc22c Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Fri, 9 Aug 2019 15:59:10 +0300 Subject: [PATCH] mesa: add stddef include in preparation for dropping p_compiler.h Signed-off-by: Lionel Landwerlin Reviewed-by: Alyssa Rosenzweig Acked-by: Eric Engestrom --- src/mesa/math/m_matrix.c | 1 + src/mesa/math/m_vector.c | 1 + 2 files changed, 2 insertions(+) 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" -- 2.30.2