From ddbc49542c43d30ce2a376852df92b4512d94efc Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 17 Sep 2024 10:49:38 +0100 Subject: [PATCH] shared: remove no longer used NOFAIL() macro Closes: https://github.com/kmod-project/kmod/issues/60 Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/135 Signed-off-by: Lucas De Marchi --- shared/macro.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/shared/macro.h b/shared/macro.h index e4322138..5d08a63d 100644 --- a/shared/macro.h +++ b/shared/macro.h @@ -39,9 +39,6 @@ #define CONCATENATE(x, y) XCONCATENATE(x, y) #define UNIQ(x) CONCATENATE(x, __COUNTER__) -/* Temporaries for importing index handling */ -#define NOFAIL(x) (x) - /* Attributes */ #define _must_check_ __attribute__((warn_unused_result)) -- 2.47.3