From: PilzAdam Date: Tue, 27 Oct 2015 14:55:34 +0000 (+0100) Subject: Fix missing #include X-Git-Tag: 0.4.14~558 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c406438b95e3df181961add56a2511b96bd9d690;p=oweals%2Fminetest.git Fix missing #include --- diff --git a/src/basicmacros.h b/src/basicmacros.h index 2b183d6c5..05987e32f 100644 --- a/src/basicmacros.h +++ b/src/basicmacros.h @@ -20,6 +20,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef BASICMACROS_HEADER #define BASICMACROS_HEADER +#include + #define ARRLEN(x) (sizeof(x) / sizeof((x)[0])) #define MYMIN(a, b) ((a) < (b) ? (a) : (b))