Module: Mesa Branch: master Commit: f3d4d10a1d483cff7b3fbb6db4d6d752dd002243 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f3d4d10a1d483cff7b3fbb6db4d6d752dd002243
Author: Emmanuel Gil Peyrot <[email protected]> Date: Thu Oct 29 15:22:19 2015 +0000 gbm.h: Add a missing stddef.h include for size_t. This was causing compilation issues when one of its providers wasn’t already included before gbm.h. Cc: "11.0" <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/gbm/main/gbm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gbm/main/gbm.h b/src/gbm/main/gbm.h index 2708e50..8db2153 100644 --- a/src/gbm/main/gbm.h +++ b/src/gbm/main/gbm.h @@ -35,6 +35,7 @@ extern "C" { #define __GBM__ 1 +#include <stddef.h> #include <stdint.h> /** _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
