2022-10-08 10:06:09 +00:00
|
|
|
#ifndef _BITS_MACROS_H
|
|
|
|
#define _BITS_MACROS_H
|
2022-10-04 17:06:56 +00:00
|
|
|
|
2022-10-15 07:52:37 +00:00
|
|
|
#define __lc_noreturn __attribute__((noreturn))
|
|
|
|
#define __lc_align(n) __attribute__((aligned(n)))
|
|
|
|
#define __lc_deprecated(msg) __attribute__((deprecated(msg)))
|
2022-10-25 17:27:24 +00:00
|
|
|
#define __lc_is_deprecated __attribute__((deprecated))
|
2022-10-15 09:20:20 +00:00
|
|
|
#define __lc_unreachable __builtin_unreachable
|
2022-10-21 16:39:46 +00:00
|
|
|
#define __lc_used __attribute__((used))
|
2022-10-30 19:40:05 +00:00
|
|
|
#define __lc_unused __attribute__((unused))
|
2022-10-04 17:06:56 +00:00
|
|
|
|
|
|
|
#endif
|