From: Matt Turner Date: Sun, 22 Nov 2015 23:28:25 +0000 (-0800) Subject: util: Include assert.h in macros.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d956335a0b533351edb547c974c601e3529c2037;p=mesa.git util: Include assert.h in macros.h. --- diff --git a/src/util/macros.h b/src/util/macros.h index 84e4f182bcf..5014b918b5a 100644 --- a/src/util/macros.h +++ b/src/util/macros.h @@ -24,6 +24,8 @@ #ifndef UTIL_MACROS_H #define UTIL_MACROS_H +#include + /* Compute the size of an array */ #ifndef ARRAY_SIZE # define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))