9 lines
261 B
C
9 lines
261 B
C
#ifndef _BITS_MACROS_H
|
|
#define _BITS_MACROS_H
|
|
|
|
#define __lc_noreturn __attribute__((noreturn))
|
|
#define __lc_align(n) __attribute__((aligned(n)))
|
|
#define __lc_deprecated(msg) __attribute__((deprecated(msg)))
|
|
#define __lc_unreachable __builtin_unreachable
|
|
|
|
#endif |