summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2016-09-06 19:47:14 +0200
committerRoland Scheidegger <sroland@vmware.com>2016-09-06 19:47:14 +0200
commit31a380c8ddbcb9eaba275a000a9d0c5f28cfd379 (patch)
tree4be223f7d86e08b17f47cf2e5e1f578a881eb6ca /src/util
parent92162dbe32c3889aa752f9053acfeaacb02a383b (diff)
downloadexternal_mesa3d-31a380c8ddbcb9eaba275a000a9d0c5f28cfd379.zip
external_mesa3d-31a380c8ddbcb9eaba275a000a9d0c5f28cfd379.tar.gz
external_mesa3d-31a380c8ddbcb9eaba275a000a9d0c5f28cfd379.tar.bz2
util: (trivial) add <stdint.h> include to slab.c
should fix "src/util/slab.c:57:13: error: ‘uint8_t’ undeclared"
Diffstat (limited to 'src/util')
-rw-r--r--src/util/slab.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/slab.c b/src/util/slab.c
index acf818b..af75152 100644
--- a/src/util/slab.c
+++ b/src/util/slab.c
@@ -24,6 +24,7 @@
#include "slab.h"
#include "macros.h"
#include "simple_list.h"
+#include <stdint.h>
#include <stdbool.h>
#include <string.h>