diff options
author | Jason Ekstrand <[email protected]> | 2014-07-23 14:58:52 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-08-04 11:07:10 -0700 |
commit | efa0aa8ffc63e8fdd23335e67ca76eb358cfd1ac (patch) | |
tree | 67408f6c4b64fbd145771e27dfa7fb06dd61d7db /src/util/hash_table.c | |
parent | 72e55bb6888ff4d6b69b10d9c58573e4c3d492ec (diff) |
util: Gather some common macros
This gathers macros that have been included across components into util so
that the include chain can be more vertical. In particular, this makes
util stand on its own without any dependence whatsoever on the rest of
mesa.
Signed-off-by: "Jason Ekstrand" <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/util/hash_table.c')
-rw-r--r-- | src/util/hash_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/hash_table.c b/src/util/hash_table.c index f98a1a647ea..1b6726c79a9 100644 --- a/src/util/hash_table.c +++ b/src/util/hash_table.c @@ -44,8 +44,8 @@ #include <string.h> #include "hash_table.h" -#include "main/macros.h" #include "ralloc.h" +#include "macros.h" static const uint32_t deleted_key_value; |