|
|
@ -18,11 +18,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
#define _cold __attribute__((cold))
|
|
|
|
#define _cold __attribute__((cold))
|
|
|
|
#define _hot __attribute__((hot))
|
|
|
|
#define _hot __attribute__((hot))
|
|
|
|
|
|
|
|
#define _dead __attribute__((unused))
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define noreturn __attribute__((noreturn))
|
|
|
|
#define noreturn __attribute__((noreturn))
|
|
|
|
#define deprecated __attribute__((deprecated))
|
|
|
|
#define _deprecated __attribute__((deprecated))
|
|
|
|
#define deprecated_message(str) __attribute__((deprecated(str)))
|
|
|
|
#define deprecated_message(str) __attribute__((deprecated(str)))
|
|
|
|
|
|
|
|
#define _deprecated_msg(str) deprecated_message(str)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define noinline __attribute__((noinline))
|
|
|
|
#define noinline __attribute__((noinline))
|
|
|
|