diff options
author | Brian Paul <[email protected]> | 2014-08-04 13:34:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-08-04 14:06:13 -0600 |
commit | 04764f3bd9aded7f872d3fbd313f88ad41945cce (patch) | |
tree | 96e29f400d8b2b09ccc28c891a2320cee99f9077 /src/util/hash_table.h | |
parent | b035869ff82f61c47c42cb4e94da767722e63689 (diff) |
util: include c99_compat.h in hash_table.h to get 'inline' definition
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/util/hash_table.h')
-rw-r--r-- | src/util/hash_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/hash_table.h b/src/util/hash_table.h index 9b67f05bec6..d6b6ebf4069 100644 --- a/src/util/hash_table.h +++ b/src/util/hash_table.h @@ -31,6 +31,7 @@ #include <stdlib.h> #include <inttypes.h> #include <stdbool.h> +#include "c99_compat.h" #include "macros.h" #ifdef __cplusplus |