From 6372fee41078159777ef055f9790df447c27d84a Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 3 Oct 2018 16:00:11 -0400 Subject: [PATCH] use consistent macro naming convention --- util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.h b/util.h index fa1eac4..a9e8932 100644 --- a/util.h +++ b/util.h @@ -10,8 +10,8 @@ #define UNUSED __attribute__((unused)) #define EXPORT __attribute__((visibility("default"))) -#define stringify(s) #s -#define ALIAS(f) __attribute__((alias(stringify(f)))) +#define STRINGIFY(s) #s +#define ALIAS(f) __attribute__((alias(STRINGIFY(f)))) static inline int ffzl(long x) { return __builtin_ffsl(~x);