diff options
author | Brian Paul <brianp@vmware.com> | 2017-04-03 08:44:10 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2017-04-03 13:09:05 -0600 |
commit | 960f640c7ae2526691577e9edb355cac0bd58823 (patch) | |
tree | 150644a45ea8773f63be85adf953a0643bbd60db /src/util/list.h | |
parent | 0fb2c16b3b83f27baed1a3b0bb608b117a725f80 (diff) |
util: #include "c99_compat.h" to fix Windows build
Otherwise, we were getting the definition for 'inline' by chance from
some other preceeding #include.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'src/util/list.h')
-rw-r--r-- | src/util/list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/list.h b/src/util/list.h index 07eb9f3e6a..6edb750110 100644 --- a/src/util/list.h +++ b/src/util/list.h @@ -41,6 +41,7 @@ #include <stdbool.h> #include <stddef.h> #include <assert.h> +#include "c99_compat.h" struct list_head |