diff options
author | Emmanuel Gil Peyrot <[email protected]> | 2015-10-29 15:22:19 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-11-05 14:05:20 +0000 |
commit | addd501acd648ae9068b385b1037546a03186446 (patch) | |
tree | edf469190718f265e7bd7bfaa3db1eebdd646818 | |
parent | d9474cb70e5221b1a46172a760a4abc42e26e0af (diff) |
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]>
(cherry picked from commit f3d4d10a1d483cff7b3fbb6db4d6d752dd002243)
-rw-r--r-- | src/gbm/main/gbm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gbm/main/gbm.h b/src/gbm/main/gbm.h index 2708e50a45c..8db2153e84b 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> /** |