2022-10-08 09:32:01 +00:00
|
|
|
#ifndef __BITS_MACROS_H
|
|
|
|
#define __BITS_MACROS_H
|
2022-10-04 17:06:56 +00:00
|
|
|
|
|
|
|
#define noreturn __attribute__((noreturn))
|
|
|
|
#define align(n) __attribute__((aligned(n)))
|
|
|
|
#define deprecated(msg) __attribute__((deprecated(msg)))
|
|
|
|
|
|
|
|
#endif
|