diff options
author | Roland Scheidegger <sroland@vmware.com> | 2016-09-06 19:47:14 +0200 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2016-09-06 19:47:14 +0200 |
commit | 31a380c8ddbcb9eaba275a000a9d0c5f28cfd379 (patch) | |
tree | 4be223f7d86e08b17f47cf2e5e1f578a881eb6ca /src/util | |
parent | 92162dbe32c3889aa752f9053acfeaacb02a383b (diff) |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/slab.c b/src/util/slab.c index acf818b835..af7515265e 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> |