From: Christian Brauner Date: Sat, 17 Apr 2021 15:25:46 +0000 (+0200) Subject: error_utils: add missing macro.h include X-Git-Tag: lxc-5.0.0~202^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f527abc6532f0342d281351dfeaed551e068958;p=thirdparty%2Flxc.git error_utils: add missing macro.h include Signed-off-by: Christian Brauner --- diff --git a/src/lxc/error_utils.h b/src/lxc/error_utils.h index b229985e9..ac0860d4f 100644 --- a/src/lxc/error_utils.h +++ b/src/lxc/error_utils.h @@ -4,6 +4,9 @@ #define __LXC_ERROR_UTILS_H #include + +#include "macro.h" + #define MAX_ERRNO 4095 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)