mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
use consistent macro naming convention
This commit is contained in:
parent
829ace403f
commit
6372fee410
1 changed files with 2 additions and 2 deletions
4
util.h
4
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue