Luna/libs/libc/include/bits/macros.h

10 lines
301 B
C
Raw Normal View History

#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
2022-10-21 16:39:46 +00:00
#define __lc_used __attribute__((used))
#endif