use consistent macro naming convention

This commit is contained in:
Daniel Micay 2018-10-03 16:00:11 -04:00
parent 829ace403f
commit 6372fee410

4
util.h
View File

@ -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);